summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--common/nixvim.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/common/nixvim.nix b/common/nixvim.nix
index 8d63f37..d86a923 100644
--- a/common/nixvim.nix
+++ b/common/nixvim.nix
@@ -23,10 +23,11 @@ inputs:
23 # Use `//` at the end to store the absolute file name 23 # Use `//` at the end to store the absolute file name
24 backupdir.__raw = "vim.fn.stdpath('data') .. '/backup//'"; 24 backupdir.__raw = "vim.fn.stdpath('data') .. '/backup//'";
25 completeopt = [ 25 completeopt = [
26 "menu"
27 "menuone" 26 "menuone"
28 "noinsert" 27 "noinsert"
29 "noselect" 28 "noselect"
29 "popup"
30 "preinsert"
30 ]; 31 ];
31 cursorline = true; 32 cursorline = true;
32 diffopt = [ 33 diffopt = [