nixvim/config/settings.nix
Patrick Michl 28d8213ebc
add config
2024-11-05 13:01:15 +01:00

37 lines
628 B
Nix

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