From 3f9c992f47bdab94307ed8f438ca77bb46cf8730 Mon Sep 17 00:00:00 2001 From: zoomiti Date: Wed, 30 Nov 2022 13:27:52 -0500 Subject: [PATCH] Adds whichkey to nvim --- .config/nvim/init.vim | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim index dcc1318..608fcc7 100644 --- a/.config/nvim/init.vim +++ b/.config/nvim/init.vim @@ -95,6 +95,8 @@ Plug 'nvim-neorg/neorg' " Copilot " Plug 'github/copilot.vim' + +Plug 'folke/which-key.nvim' endif call plug#end() @@ -578,6 +580,12 @@ if has("nvim") ["core.integrations.telescope"] = {}, -- Enable the telescope module } } + + require("which-key").setup { + -- your configuration comes here + -- or leave it empty to use the default settings + -- refer to the configuration section below + } EOF endif