aboutsummaryrefslogtreecommitdiff
path: root/nvim/lua/plugins/trouble.lua
diff options
context:
space:
mode:
authoreric.marin <maarin.eric@gmail.com>2024-10-16 21:45:26 +0200
committereric.marin <maarin.eric@gmail.com>2024-10-16 21:45:26 +0200
commitb0cfdab1e93f660fda8f9398e30c9c996a1760f3 (patch)
tree0b64ae82383491383be6570cfd8198db9f765a01 /nvim/lua/plugins/trouble.lua
parentab2dadca189217eb152a2bd157c651e9e3f3145b (diff)
downloaddotfiles-b0cfdab1e93f660fda8f9398e30c9c996a1760f3.tar.gz
dotfiles-b0cfdab1e93f660fda8f9398e30c9c996a1760f3.zip
nvim change
installed neorg removed trouble modified lspsaga
Diffstat (limited to 'nvim/lua/plugins/trouble.lua')
-rw-r--r--nvim/lua/plugins/trouble.lua24
1 files changed, 0 insertions, 24 deletions
diff --git a/nvim/lua/plugins/trouble.lua b/nvim/lua/plugins/trouble.lua
deleted file mode 100644
index a49d906..0000000
--- a/nvim/lua/plugins/trouble.lua
+++ /dev/null
@@ -1,24 +0,0 @@
-local init = function()
- local keymap = vim.keymap
- keymap.set("n", "<Space>rd", ":Trouble diagnostics toggle<Enter>",
- { noremap = true, silent = true, desc = "Diagnostics (Trouble)" }) -- Diagnostics
- keymap.set("n", "<Space>rt", ":Trouble todo toggle<Enter>",
- { noremap = true, silent = true, desc = "Todos (Trouble)" }) -- Todos
- keymap.set("n", "<Space>ro", ":Trouble symbols toggle<Enter>",
- { noremap = true, silent = true, desc = "Outline (Trouble)" }) -- Outline
-end
-
-local config = function()
- require("trouble").setup({
- use_diagnostic_signs = true
- })
-end
-
-return {
- "folke/trouble.nvim",
- dependencies = { "nvim-tree/nvim-web-devicons" },
- lazy = true,
- cmd = "Trouble",
- init = init,
- config = config
-}