nixvim/config/settings.nix
2024-05-09 01:34:51 +02:00

26 lines
513 B
Nix

{
config = {
clipboard = {
providers.wl-copy.enable = true;
};
opts = {
number = true;
relativenumber = true;
tabstop = 2;
softtabstop = 2;
showtabline = 2;
expandtab = true;
smartindent = true;
shiftwidth = 2;
breakindent = true;
cursorline = true;
scrolloff = 8;
foldmethod = "manual";
foldenable = false;
linebreak = true;
spell = false;
swapfile = false;
timeoutlen = 300;
};
};
}