From 1039db9cb1ca66997f25ffd1217e474d393a22e5 Mon Sep 17 00:00:00 2001 From: Janis Hutz Date: Fri, 7 Mar 2025 11:47:54 +0100 Subject: [PATCH] Add new plugin --- nvim/lua/plugins/actions-preview.lua | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 nvim/lua/plugins/actions-preview.lua diff --git a/nvim/lua/plugins/actions-preview.lua b/nvim/lua/plugins/actions-preview.lua new file mode 100755 index 0000000..d298cf6 --- /dev/null +++ b/nvim/lua/plugins/actions-preview.lua @@ -0,0 +1,19 @@ +return { + "aznhe21/actions-preview.nvim", + config = function() + -- Configure actions-preview.nvim + require("actions-preview").setup({ + -- Floating window configuration (optional) + max_width = 80, -- Max width of the preview window + max_height = 12, -- Max height of the preview window + min_width = 20, -- Minimum width for the preview window + min_height = 4, -- Minimum height for the preview window + + -- Keymaps (optional) + keymaps = { + -- Trigger code action preview with a keybinding (example using a) + { "n", "ca", vim.lsp.buf.code_action }, + }, + }) + end, +}