Modularize nixvim config

This commit is contained in:
2025-07-06 22:46:23 +02:00
parent 4131b9b116
commit 407f943102
10 changed files with 166 additions and 129 deletions
+37
View File
@@ -0,0 +1,37 @@
{
programs.nixvim.opts = {
number = true;
relativenumber = true;
showmode = false;
breakindent = true;
undofile = true;
ignorecase = true;
smartcase = true;
signcolumn = "yes";
updatetime = 250;
timeoutlen = 300;
splitright = true;
splitbelow = true;
list = true;
listchars = {
tab = "» ";
trail = "·";
nbsp = "";
};
inccommand = "split";
cursorline = true;
scrolloff = 10;
confirm = true;
};
}