dotfiles/.config/nvim/lua/ui.lua

20 lines
397 B
Lua
Raw Normal View History

2022-08-08 19:11:44 +02:00
require('plugins')
require('keymaps')
2022-08-08 19:11:44 +02:00
packer.use {
2022-08-08 19:25:36 +02:00
'https://github.com/folke/which-key.nvim',
2022-08-08 19:11:44 +02:00
config = function()
2022-08-08 19:25:36 +02:00
require('which-key').setup {
2022-08-08 19:11:44 +02:00
}
end
}
2022-08-08 19:25:36 +02:00
packer.use {
'https://github.com/ctrlpvim/ctrlp.vim',
config = function()
vim.g.ctrlp_map = '<C-P>'
vim.g.ctrlp_cmd = 'CtrlP'
map('n', '<Leader><S-b>', ':CtrlPMRUFiles<cr>')
2022-08-08 19:25:36 +02:00
end
}