nvim: add CtrlP

This commit is contained in:
tastytea 2022-08-08 19:25:36 +02:00
parent 58af1e692a
commit 6912174892
Signed by: tastytea
SSH Key Fingerprint: SHA256:FBkvrOlhq5use1XEttyUGT4bUTDVA1ar9SgIc9P03cM

View File

@ -1,9 +1,17 @@
require('plugins')
packer.use {
"folke/which-key.nvim",
'https://github.com/folke/which-key.nvim',
config = function()
require("which-key").setup {
require('which-key').setup {
}
end
}
packer.use {
'https://github.com/ctrlpvim/ctrlp.vim',
config = function()
vim.g.ctrlp_map = '<C-P>'
vim.g.ctrlp_cmd = 'CtrlP'
end
}