mirror of
https://github.com/Superredstone/nixos.git
synced 2026-03-07 20:28:08 +01:00
Added nixvim
This commit is contained in:
17
home/nvim/opts.nix
Normal file
17
home/nvim/opts.nix
Normal file
@@ -0,0 +1,17 @@
|
||||
{ ... }:
|
||||
{
|
||||
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;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user