From bf480fc457f0d57354604cecd800f44c0524f375 Mon Sep 17 00:00:00 2001 From: "Hypera User (aider)" Date: Thu, 10 Oct 2024 15:07:52 -0300 Subject: [PATCH] feat: Add trouble.nvim plugin to Neovim configuration --- init.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/init.lua b/init.lua index bc1805d9..1a476031 100644 --- a/init.lua +++ b/init.lua @@ -283,6 +283,9 @@ require('lazy').setup({ }, -- NOTE: Plugins can also be configured to run Lua code when they are loaded. + + -- Add trouble.nvim plugin + { 'folke/trouble.nvim', dependencies = { 'nvim-tree/nvim-web-devicons' }, opts = {} }, -- -- This is often very useful to both group configuration, as well as handle -- lazy loading plugins that don't need to be loaded immediately at startup.