init basic packages

This commit is contained in:
Christoph Wagner 2024-03-26 20:55:35 +01:00
parent dbba54cfd8
commit ebd899d3d3
7 changed files with 71 additions and 2 deletions

View file

@ -0,0 +1,12 @@
return {
'folke/trouble.nvim',
dependencies = { 'nvim-tree/nvim-web-devicons' },
opts = {
-- your configuration comes here
-- or leave it empty to use the default settings
-- refer to the configuration section below
},
vim.keymap.set('n', '<leader>xx', function()
require('trouble').toggle()
end),
}