Files
nixvim/config/opts.nix
T

20 lines
349 B
Nix

{ ... }:
{
opts = {
cursorline = true;
number = true;
relativenumber = true;
scrolloff = 5;
shiftwidth = 4;
signcolumn = "yes";
autoindent = true;
updatetime = 200;
smartcase = true;
ignorecase = true;
termguicolors = true;
expandtab = false;
gdefault = true;
cursorlineopt = "both";
};
}