Files
nixvim/config/opts.nix
T
2026-05-23 09:25:51 +02:00

19 lines
326 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;
gdefault = true;
cursorlineopt = "both";
};
}