fix: Renamed option
This commit is contained in:
parent
166cc55f46
commit
9a4ecf2223
1 changed files with 27 additions and 23 deletions
|
@ -19,29 +19,33 @@ in
|
||||||
package = pkgs.neovim-nightly;
|
package = pkgs.neovim-nightly;
|
||||||
globals.mapleader = " ";
|
globals.mapleader = " ";
|
||||||
# Appearance
|
# Appearance
|
||||||
colorschemes.gruvbox.enable = true;
|
colorschemes = {
|
||||||
colorschemes.gruvbox.settings.bold = true;
|
gruvbox.enable = true;
|
||||||
colorschemes.gruvbox.settings.transparent_mode = true;
|
gruvbox.settings.bold = true;
|
||||||
colorschemes.gruvbox.settings.terminal_colors = true;
|
gruvbox.settings.transparent_mode = true;
|
||||||
options.number = true;
|
gruvbox.settings.terminal_colors = true;
|
||||||
options.relativenumber = true;
|
};
|
||||||
options.colorcolumn = "+1";
|
opts = {
|
||||||
options.cursorline = true;
|
number = true;
|
||||||
options.wrap = false;
|
relativenumber = true;
|
||||||
options.splitright = true;
|
colorcolumn = "+1";
|
||||||
# Tabs & indentation
|
cursorline = true;
|
||||||
options.smarttab = true;
|
wrap = false;
|
||||||
options.autoindent = true;
|
splitright = true;
|
||||||
options.smartindent = true;
|
# Tabs & indentation
|
||||||
# Search path
|
smarttab = true;
|
||||||
options.path = ".,/usr/include,**";
|
autoindent = true;
|
||||||
options.wildmenu = true;
|
smartindent = true;
|
||||||
options.hlsearch = true;
|
# Search path
|
||||||
options.incsearch = true;
|
path = ".,/usr/include,**";
|
||||||
options.ignorecase = true; # Search ignores cases
|
wildmenu = true;
|
||||||
options.smartcase = true; # Unless it has a capital letter
|
hlsearch = true;
|
||||||
# Enable local configuration :h 'exrc'
|
incsearch = true;
|
||||||
options.exrc = true; # safe since nvim 0.9
|
ignorecase = true; # Search ignores cases
|
||||||
|
smartcase = true; # Unless it has a capital letter
|
||||||
|
# Enable local configuration :h 'exrc'
|
||||||
|
exrc = true; # safe since nvim 0.9
|
||||||
|
};
|
||||||
plugins = import ./plugins.nix { inherit lib; };
|
plugins = import ./plugins.nix { inherit lib; };
|
||||||
keymaps = import ./mappings.nix;
|
keymaps = import ./mappings.nix;
|
||||||
inherit (import ./augroups.nix) autoGroups autoCmd;
|
inherit (import ./augroups.nix) autoGroups autoCmd;
|
||||||
|
|
Loading…
Reference in a new issue