mirror of
https://github.com/Superredstone/nixos.git
synced 2026-03-08 12:47:00 +01:00
18 lines
294 B
Nix
18 lines
294 B
Nix
{ ... }:
|
|
{
|
|
programs.nixvim.opts = {
|
|
number = true;
|
|
relativenumber = true;
|
|
signcolumn = "yes";
|
|
splitright = true;
|
|
splitbelow = true;
|
|
cursorline = true;
|
|
scrolloff = 5;
|
|
undofile = true;
|
|
ignorecase = true;
|
|
smartcase = true;
|
|
gdefault = true;
|
|
termguicolors = true;
|
|
};
|
|
}
|