dotfiles/.config/nvim/lua/ui.lua
2022-08-08 19:25:36 +02:00

18 lines
322 B
Lua

require('plugins')
packer.use {
'https://github.com/folke/which-key.nvim',
config = function()
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
}