Add action menu for generic lsp

This commit is contained in:
2024-11-15 10:36:22 +01:00
parent 7947e0a0d2
commit 7076a05bac
3 changed files with 22 additions and 1 deletions

View File

@@ -0,0 +1,20 @@
return {
"aznhe21/actions-preview.nvim",
opts = {
backend = { "telescope", "nui" },
telescope = vim.tbl_extend(
"force",
-- telescope theme: https://github.com/nvim-telescope/telescope.nvim#themes
require("telescope.themes").get_cursor(),
{
make_value = nil,
make_make_display = nil,
previewer = false,
layout_config = {
width = 0.2,
height = 0.1,
},
}
),
}
};