summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--common/vim.nix1
-rw-r--r--dotfiles/vim.lua6
2 files changed, 7 insertions, 0 deletions
diff --git a/common/vim.nix b/common/vim.nix
index ba756e9..cc772c3 100644
--- a/common/vim.nix
+++ b/common/vim.nix
@@ -73,6 +73,7 @@ let
73 diffview-nvim 73 diffview-nvim
74 nvim-notify 74 nvim-notify
75 indent-blankline-nvim 75 indent-blankline-nvim
76 which-key-nvim
76 77
77 # Completion 78 # Completion
78 nvim-cmp 79 nvim-cmp
diff --git a/dotfiles/vim.lua b/dotfiles/vim.lua
index 95ba8a1..f3f8600 100644
--- a/dotfiles/vim.lua
+++ b/dotfiles/vim.lua
@@ -446,6 +446,12 @@ require("indent_blankline").setup {
446 show_current_context_start = true, 446 show_current_context_start = true,
447} 447}
448 448
449-- Which Key
450
451require("which-key").setup {}
452
453vim.o.timeoutlen = 500
454
449-- Local config 455-- Local config
450 456
451function isModuleAvailable(name) 457function isModuleAvailable(name)