Files
dotfiles/nvim/lua/plugins/action-preview.lua
2024-11-17 12:12:14 +01:00

21 lines
470 B
Lua

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.3,
height = 0.15,
},
}
),
}
};