From 80f7dcf1e9f71f260eb3250bbb6df7d355fc6cf0 Mon Sep 17 00:00:00 2001 From: David Ibia Date: Sun, 14 Jan 2024 03:15:56 +0100 Subject: [PATCH] feat(trouble.lua): add trouble.nvim plugin with configuration to the project The trouble.nvim plugin is added to the project. It is a plugin that provides a better way to handle and navigate through the list of diagnostics and other code issues. The plugin is added as a dependency and requires the nvim-tree/nvim-web-devicons plugin to function properly. The configuration for the trouble.nvim plugin is added in the absolute.after.trouble.lua file. --- lua/absolute/plugins/trouble.lua | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 lua/absolute/plugins/trouble.lua diff --git a/lua/absolute/plugins/trouble.lua b/lua/absolute/plugins/trouble.lua new file mode 100644 index 0000000..93b6cf7 --- /dev/null +++ b/lua/absolute/plugins/trouble.lua @@ -0,0 +1,7 @@ +return { + "folke/trouble.nvim", + dependencies = { "nvim-tree/nvim-web-devicons" }, + config = function() + require("absolute.after.trouble") + end +}