mirror of
https://github.com/anthonyoteri/dotfiles.git
synced 2026-06-05 23:56:52 -04:00
13 lines
208 B
VimL
13 lines
208 B
VimL
Plug 'folke/which-key.nvim'
|
|
|
|
function WhichKeySetup()
|
|
lua << EOF
|
|
require("which-key").setup {}
|
|
EOF
|
|
endfunction
|
|
|
|
augroup WhichKeySetup
|
|
autocmd!
|
|
autocmd User PlugLoaded call WhichKeySetup()
|
|
augroup END
|