mirror of
https://github.com/Superredstone/nixvim.git
synced 2026-06-17 17:24:38 +02:00
19 lines
326 B
Nix
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";
|
|
};
|
|
}
|