nix-config/modules/home-manager/coding/neovim/options.nix

27 lines
501 B
Nix
Raw Normal View History

2025-06-02 02:09:06 +01:00
{
opts = {
expandtab = true;
exrc = true;
foldlevel = 1;
foldlevelstart = 99;
foldmethod = "indent";
inccommand = "split";
laststatus = 3;
list = true;
number = true;
relativenumber = true;
shiftwidth = 2;
2025-06-10 13:20:40 +01:00
signcolumn = "yes:1";
2025-06-02 02:09:06 +01:00
smartindent = true;
softtabstop = 2;
splitbelow = true;
splitright = true;
swapfile = false;
syntax = "on";
tabstop = 2;
termguicolors = true;
updatetime = 1000;
wrap = false;
};
}