Files
dotfiles/nvim/lua/plugins/action-preview.lua
2024-11-15 10:36:22 +01:00

21 lines
469 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.2,
height = 0.1,
},
}
),
}
};