mirror of
https://github.com/fred-drake/neovim.git
synced 2026-06-05 23:09:26 -05:00
34 lines
711 B
Nix
34 lines
711 B
Nix
{
|
|
config = {
|
|
opts = {
|
|
updatetime = 100; # faster completion
|
|
number = true;
|
|
relativenumber = true;
|
|
|
|
autoindent = true;
|
|
autowrite = true;
|
|
confirm = true;
|
|
clipboard = "unnamedplus";
|
|
cursorline = true;
|
|
list = true;
|
|
expandtab = true;
|
|
shiftround = true;
|
|
shiftwidth = 2;
|
|
# showmode = false;
|
|
signcolumn = "yes";
|
|
smartcase = true;
|
|
smartindent = true;
|
|
tabstop = 2;
|
|
|
|
ignorecase = true;
|
|
incsearch = true;
|
|
completeopt = "menu,menuone,noselect";
|
|
wildmode = "longest:full,full";
|
|
|
|
swapfile = false;
|
|
undofile = true; # Build-in persistent undo
|
|
undolevels = 10000;
|
|
};
|
|
};
|
|
}
|