nix-config/modules/nixvim/options.nix
Oliver Davies e0ae013131
All checks were successful
/ check (push) Successful in 1m22s
Revert "Hide the command-line"
This reverts commit f8d3f69001.
2025-10-02 09:06:50 +01:00

27 lines
548 B
Nix

{
flake.modules.nixvim.custom.opts = {
expandtab = true;
exrc = true;
foldlevel = 1;
foldlevelstart = 99;
foldmethod = "indent";
inccommand = "split";
laststatus = 3;
list = true;
number = true;
relativenumber = true;
scrolloff = 5;
shiftwidth = 2;
signcolumn = "yes:1";
smartindent = true;
softtabstop = 2;
splitbelow = true;
splitright = true;
swapfile = false;
syntax = "on";
tabstop = 2;
termguicolors = true;
updatetime = 1000;
wrap = false;
};
}