21 lines
470 B
Lua
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,
|
|
},
|
|
}
|
|
),
|
|
}
|
|
};
|