nixvim/config/settings.nix
2024-05-11 00:51:20 +02:00

31 lines
643 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;
termguicolors = true;
showmode = false;
splitbelow = true;
splitkeep = "screen";
splitright = true;
};
};
}