Use nixvim
This commit is contained in:
parent
f0217e4640
commit
ecb2a05d60
72 changed files with 691 additions and 1664 deletions
25
modules/home-manager/coding/neovim/options.nix
Normal file
25
modules/home-manager/coding/neovim/options.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{
|
||||
opts = {
|
||||
expandtab = true;
|
||||
exrc = true;
|
||||
foldlevel = 1;
|
||||
foldlevelstart = 99;
|
||||
foldmethod = "indent";
|
||||
inccommand = "split";
|
||||
laststatus = 3;
|
||||
list = true;
|
||||
number = true;
|
||||
relativenumber = true;
|
||||
shiftwidth = 2;
|
||||
smartindent = true;
|
||||
softtabstop = 2;
|
||||
splitbelow = true;
|
||||
splitright = true;
|
||||
swapfile = false;
|
||||
syntax = "on";
|
||||
tabstop = 2;
|
||||
termguicolors = true;
|
||||
updatetime = 1000;
|
||||
wrap = false;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue