Adds whichkey to nvim

main
zoomiti 3 years ago
parent 0750c87ff1
commit 3f9c992f47

@ -95,6 +95,8 @@ Plug 'nvim-neorg/neorg'
" Copilot " Copilot
" Plug 'github/copilot.vim' " Plug 'github/copilot.vim'
Plug 'folke/which-key.nvim'
endif endif
call plug#end() call plug#end()
@ -578,6 +580,12 @@ if has("nvim")
["core.integrations.telescope"] = {}, -- Enable the telescope module ["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 EOF
endif endif

Loading…