Skip to content

Commit

Permalink
nvchad add whichkey
Browse files Browse the repository at this point in the history
  • Loading branch information
aminfara committed Jan 18, 2022
1 parent 30e2f0b commit 88f77a5
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions nvchad/init.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
require('custom.plugins')
12 changes: 12 additions & 0 deletions nvchad/plugins/init.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
local present, custom_plugins = pcall(require, 'core.customPlugins')
if present then
custom_plugins.add(function(use)
use({
'folke/which-key.nvim',
config = function()
require('which-key').setup({})
end,
event = 'VimEnter'
})
end)
end

0 comments on commit 88f77a5

Please sign in to comment.