Skip to content

Commit

Permalink
vim: add which-key for showing help and register contents
Browse files Browse the repository at this point in the history
  • Loading branch information
damncabbage committed Sep 23, 2022
1 parent 9886ee6 commit 162952b
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .config/nvim/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,15 @@ require('packer').startup(function(use)
-- Parallel undo histories, for a scatter-brained fool like me
use 'mbbill/undotree'

-- Show me what my shortcuts are
use {
'folke/which-key.nvim',
config = function()
require("which-key").setup {
}
end
}

-- Keep last, in order to bootstrap successfully.
if packer_bootstrap then
require('packer').sync()
Expand Down

0 comments on commit 162952b

Please sign in to comment.