diff --git a/lua/plugin/trouble.lua b/lua/plugin/trouble.lua new file mode 100644 index 0000000..9cfa8ad --- /dev/null +++ b/lua/plugin/trouble.lua @@ -0,0 +1,10 @@ +return { + { + "folke/trouble.nvim", + dependencies = { "nvim-tree/nvim-web-devicons" }, + opts = { + use_diagnostic_signs = true, + vim.keymap.set("n", "T", function() require("trouble").toggle() end), + }, + } +}