yumevim-nix/config/options.nix
C4 Patino 99999b577c
All checks were successful
ci / nix-fmt (push) Successful in 2m26s
fix: updated undodir to be dynamic based off of current user
2026-02-26 21:50:23 -06:00

36 lines
525 B
Nix
Executable file

{
globals = {
mapleader = " ";
maplocalleader = " ";
};
opts = {
nu = true;
relativenumber = true;
tabstop = 4;
shiftwidth = 4;
expandtab = true;
wrap = false;
swapfile = false;
backup = false;
undofile = true;
hlsearch = false;
incsearch = true;
termguicolors = true;
scrolloff = 8;
foldcolumn = "0";
foldlevel = 99;
foldmethod = "expr";
foldexpr = "nvim_treesitter#foldexpr()";
foldenable = true;
signcolumn = "yes";
};
}