20 lines
284 B
Nix
20 lines
284 B
Nix
{
|
|
config = {
|
|
opts = {
|
|
number = true;
|
|
relativenumber = true;
|
|
|
|
tabstop = 2;
|
|
softtabstop = 2;
|
|
showtabline = 2;
|
|
expandtab = true;
|
|
|
|
smartindent = true;
|
|
shiftwidth = 2;
|
|
|
|
breakindent = true;
|
|
|
|
cursorline = true;
|
|
};
|
|
};
|
|
}
|