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

18 lines
258 B
Nix

{
config = {
opts = {
number = true;
relativenumber = true;
tabstop = 2;
softtabstop = 2;
showtabline = 2;
expandtab = true;
smartindent = true;
shiftwidth = 2;
breakindent = true;
};
};
}