diff options
author | Minijackson <minijackson@riseup.net> | 2022-08-22 14:53:37 +0200 |
---|---|---|
committer | Minijackson <minijackson@riseup.net> | 2022-08-22 14:53:37 +0200 |
commit | 3fa4f7415d847b53d4e7595538f561f79fe442cd (patch) | |
tree | 28f56d455c11f4f448a324438efb86ed1b68c70e | |
parent | 4a3900c11f6dac30401159e103295e46ca2b6166 (diff) | |
download | nixos-config-reborn-3fa4f7415d847b53d4e7595538f561f79fe442cd.tar.gz nixos-config-reborn-3fa4f7415d847b53d4e7595538f561f79fe442cd.zip |
vim: disable which-key
-rw-r--r-- | common/vim.nix | 1 | ||||
-rw-r--r-- | dotfiles/vim.lua | 6 |
2 files changed, 0 insertions, 7 deletions
diff --git a/common/vim.nix b/common/vim.nix index 44dc0d8..8245f99 100644 --- a/common/vim.nix +++ b/common/vim.nix | |||
@@ -73,7 +73,6 @@ 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 | ||
77 | 76 | ||
78 | # Completion | 77 | # Completion |
79 | nvim-cmp | 78 | nvim-cmp |
diff --git a/dotfiles/vim.lua b/dotfiles/vim.lua index 90caa0a..4588ae8 100644 --- a/dotfiles/vim.lua +++ b/dotfiles/vim.lua | |||
@@ -445,12 +445,6 @@ require("indent_blankline").setup { | |||
445 | show_current_context_start = true, | 445 | show_current_context_start = true, |
446 | } | 446 | } |
447 | 447 | ||
448 | -- Which Key | ||
449 | |||
450 | require("which-key").setup {} | ||
451 | |||
452 | vim.o.timeoutlen = 500 | ||
453 | |||
454 | -- Local config | 448 | -- Local config |
455 | 449 | ||
456 | function isModuleAvailable(name) | 450 | function isModuleAvailable(name) |