command center added

This commit is contained in:
Oliver Hartmann 2022-04-13 22:41:05 +02:00
parent 651d1d0d2f
commit 3dc493ff7e
2 changed files with 11 additions and 1 deletions

View File

@ -165,7 +165,12 @@ return require('packer').startup(function()
})
use({
'akinsho/toggleterm.nvim',
config = get_setup('toggleterm')
config = get_setup('toggleterm'),
})
use({
'gfeiyou/command-center.nvim',
requires = { 'nvim-telescope/telescope.nvim' },
config = get_setup('my_command_center'),
})
if packer_bootstrap then
require('packer').sync()

View File

@ -0,0 +1,5 @@
require("telescope").load_extension('command_center')
local command_center = require("command_center")
local noremap = {noremap = true}
local silent_noremap = {noremap = true, silent = true}