nixvim/config/settings.nix
2024-04-13 00:39:02 +02:00

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;
};
};
}