2023-02-17 16:31:57 -05:00
|
|
|
-- You can add your own plugins here or in other files in this directory!
|
|
|
|
|
-- I promise not to create any merge conflicts in this directory :)
|
|
|
|
|
--
|
|
|
|
|
-- See the kickstart.nvim README for more information
|
2024-10-10 15:09:19 -03:00
|
|
|
return {
|
|
|
|
|
-- Add trouble.nvim plugin
|
2025-02-22 13:04:03 -03:00
|
|
|
{
|
|
|
|
|
'folke/trouble.nvim',
|
|
|
|
|
event = 'VimEnter',
|
|
|
|
|
dependencies = { 'nvim-tree/nvim-web-devicons' },
|
|
|
|
|
config = function()
|
|
|
|
|
require('trouble').setup({})
|
|
|
|
|
end,
|
|
|
|
|
},
|
2024-10-10 15:09:19 -03:00
|
|
|
}
|