summaryrefslogtreecommitdiff
path: root/.config/nvim/lua/plugins/trouble.lua
diff options
context:
space:
mode:
authorSam Nystrom <sam@samnystrom.dev>2023-09-07 21:14:38 -0400
committerSam Nystrom <sam@samnystrom.dev>2023-09-07 21:14:38 -0400
commit338e1e48e6bb5e57225506e86d4112feabe2ae49 (patch)
tree0e886facc473dd515a778cda35275c3f1f1ace55 /.config/nvim/lua/plugins/trouble.lua
parent11231c649e09b1c1d054482bb01d98baf83a2537 (diff)
nvim: remove EVEN MORE plugins (whoa)
Diffstat (limited to '.config/nvim/lua/plugins/trouble.lua')
-rw-r--r--.config/nvim/lua/plugins/trouble.lua15
1 files changed, 0 insertions, 15 deletions
diff --git a/.config/nvim/lua/plugins/trouble.lua b/.config/nvim/lua/plugins/trouble.lua
deleted file mode 100644
index 6678356..0000000
--- a/.config/nvim/lua/plugins/trouble.lua
+++ /dev/null
@@ -1,15 +0,0 @@
-return {
- {
- "folke/trouble.nvim",
- dependencies = { "nvim-tree/nvim-web-devicons" },
- keys = {
- { "<leader>xx", "<Cmd>TroubleToggle<CR>", desc = "Toggle trouble", silent = true },
- { "<leader>xw", "<Cmd>TroubleToggle workspace_diagnostics<CR>", desc = "Toggle workspace diagnostics", silent = true },
- { "<leader>xd", "<Cmd>TroubleToggle document_diagnostics<CR>", desc = "Toggle document diagnostics", silent = true },
- { "<leader>xl", "<Cmd>TroubleToggle loclist<CR>", desc = "Toggle loclist", silent = true },
- { "<leader>xq", "<Cmd>TroubleToggle quickfix<CR>", desc = "Toggle quickfix list", silent = true },
- { "gR", "<Cmd>TroubleToggle lsp_references<CR>", desc = "Toggle LSP reference list", silent = true },
- },
- opts = {},
- },
-}