From d2f627b5d08a3125cc27c0d39c613c1c5064c6db Mon Sep 17 00:00:00 2001 From: Taken Date: Wed, 14 May 2025 19:48:24 +0200 Subject: [PATCH] Added file for other plugins using lsp --- lua/taken/plugins/lsp/otherlsp.lua | 20 ++++++++++++++++++++ lua/taken/plugins/lsp/tinylspactions.lua | 14 -------------- lua/taken/plugins/otherplugins.lua | 4 ---- 3 files changed, 20 insertions(+), 18 deletions(-) create mode 100644 lua/taken/plugins/lsp/otherlsp.lua delete mode 100644 lua/taken/plugins/lsp/tinylspactions.lua diff --git a/lua/taken/plugins/lsp/otherlsp.lua b/lua/taken/plugins/lsp/otherlsp.lua new file mode 100644 index 0000000..e0e9962 --- /dev/null +++ b/lua/taken/plugins/lsp/otherlsp.lua @@ -0,0 +1,20 @@ +--- @type LazyPluginSpec[] +return { + { + "rachartier/tiny-code-action.nvim", + dependencies = { + "nvim-lua/plenary.nvim", + "nvim-telescope/telescope.nvim", + }, + event = "LspAttach", + config = function() + require("tiny-code-action").setup({ + backend = "vim", + }) + end, + }, + { + "smjonas/inc-rename.nvim", + config = true, + }, +} diff --git a/lua/taken/plugins/lsp/tinylspactions.lua b/lua/taken/plugins/lsp/tinylspactions.lua deleted file mode 100644 index f932209..0000000 --- a/lua/taken/plugins/lsp/tinylspactions.lua +++ /dev/null @@ -1,14 +0,0 @@ ---- @type LazyPluginSpec -return { - "rachartier/tiny-code-action.nvim", - dependencies = { - "nvim-lua/plenary.nvim", - "nvim-telescope/telescope.nvim", - }, - event = "LspAttach", - config = function() - require("tiny-code-action").setup({ - backend = "vim", - }) - end, -} diff --git a/lua/taken/plugins/otherplugins.lua b/lua/taken/plugins/otherplugins.lua index fba5ea0..5d91959 100644 --- a/lua/taken/plugins/otherplugins.lua +++ b/lua/taken/plugins/otherplugins.lua @@ -1,9 +1,5 @@ --- @type LazyPluginSpec[] return { - { - "smjonas/inc-rename.nvim", - config = true, - }, { "MagicDuck/grug-far.nvim", config = true,