]> git.rmz.io Git - dotfiles.git/blobdiff - nvim/lua/config/options.lua
nvim: set timeoutlen to 1s like default
[dotfiles.git] / nvim / lua / config / options.lua
index 757eeed8e4fa708a597a38456ba41efdd524e77f..1bc95c875dd511292ff456477091fa1d001417f8 100644 (file)
@@ -18,6 +18,7 @@ opt.tabstop = 8
 opt.sidescrolloff = 1
 opt.splitbelow = false
 opt.splitright = true
+opt.timeoutlen = 1000
 
 -- FIXME:
 -- 2. settings I might want to include when disabling options works
@@ -25,7 +26,6 @@ opt.pumblend = 10 -- Popup blend
 opt.pumheight = 10 -- Maximum number of entries in a popup
 opt.showmode = false -- Dont show mode since we have a statusline
 opt.signcolumn = "yes" -- Always show the signcolumn, otherwise it would shift the text each time
-opt.timeoutlen = 300
 opt.updatetime = 200 -- Save swap file and trigger CursorHold
 if vim.fn.has("nvim-0.9.0") == 1 then
   opt.splitkeep = "screen"