summaryrefslogtreecommitdiff
path: root/ar/.config/TheSiahxyz/lua/thesiahxyz/plugins/quickfix.lua
diff options
context:
space:
mode:
authorTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2025-06-19 18:34:13 +0900
committerTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2025-06-19 18:34:13 +0900
commit307fceea38b7352a79b0bdb87025a34b76973867 (patch)
tree382eb3e6a11973bc2c6ba33eee14d43ec2a9566b /ar/.config/TheSiahxyz/lua/thesiahxyz/plugins/quickfix.lua
parentb66f68b8c014a3041c936ee9de1b57db5bcb50fb (diff)
updates
Diffstat (limited to 'ar/.config/TheSiahxyz/lua/thesiahxyz/plugins/quickfix.lua')
-rw-r--r--ar/.config/TheSiahxyz/lua/thesiahxyz/plugins/quickfix.lua76
1 files changed, 0 insertions, 76 deletions
diff --git a/ar/.config/TheSiahxyz/lua/thesiahxyz/plugins/quickfix.lua b/ar/.config/TheSiahxyz/lua/thesiahxyz/plugins/quickfix.lua
deleted file mode 100644
index 9a3998e..0000000
--- a/ar/.config/TheSiahxyz/lua/thesiahxyz/plugins/quickfix.lua
+++ /dev/null
@@ -1,76 +0,0 @@
-return {
- {
- "folke/trouble.nvim",
- cmd = { "Trouble" },
- opts = {
- modes = {
- lsp = {
- win = { position = "right" },
- },
- preview_float = {
- mode = "diagnostics",
- preview = {
- type = "float",
- relative = "editor",
- border = "rounded",
- title = "Preview",
- title_pos = "center",
- position = { 0, -2 },
- size = { width = 0.3, height = 0.3 },
- zindex = 200,
- },
- },
- },
- },
- config = function(_, opts)
- require("trouble").setup(opts)
- end,
- init = function()
- local wk = require("which-key")
- wk.add({
- mode = { "n", "v", "x" },
- { "<leader>x", group = "Quickfix (trouble)" },
- })
- end,
- keys = {
- { "<leader>xd", "<cmd>Trouble diagnostics toggle<cr>", desc = "Toggle diagnostics (Trouble)" },
- {
- "<leader>xD",
- "<cmd>Trouble diagnostics toggle filter.buf=0<cr>",
- desc = "Toggle buffer Diagnostics (Trouble)",
- },
- { "<leader>xs", "<cmd>Trouble symbols toggle<cr>", desc = "Toggle symbols (Trouble)" },
- { "<leader>xS", "<cmd>Trouble lsp toggle<cr>", desc = "Toggle LSP def/ref/... (Trouble)" },
- { "<leader>xl", "<cmd>Trouble loclist toggle<cr>", desc = "Toggle location List (Trouble)" },
- { "<leader>xq", "<cmd>Trouble qflist toggle<cr>", desc = "Toggle quickfix List (Trouble)" },
- {
- "[x",
- function()
- if require("trouble").is_open() then
- require("trouble").prev({ skip_groups = true, jump = true })
- else
- local ok, err = pcall(vim.cmd.cprev)
- if not ok then
- vim.notify(err, vim.log.levels.ERROR)
- end
- end
- end,
- desc = "Previous quickfix (trouble)",
- },
- {
- "]x",
- function()
- if require("trouble").is_open() then
- require("trouble").next({ skip_groups = true, jump = true })
- else
- local ok, err = pcall(vim.cmd.cnext)
- if not ok then
- vim.notify(err, vim.log.levels.ERROR)
- end
- end
- end,
- desc = "Next quickfix (trouble)",
- },
- },
- },
-}