
new terminal, telescope plugins moved into telescope.lua for eassier management and a lot more
21 lines
458 B
Lua
21 lines
458 B
Lua
return {
|
|
{
|
|
"aznhe21/actions-preview.nvim",
|
|
event = "BufRead",
|
|
opts = {
|
|
telescope = {
|
|
sorting_strategy = "ascending",
|
|
layout_strategy = "vertical",
|
|
layout_config = {
|
|
width = 0.8,
|
|
height = 0.9,
|
|
prompt_position = "top",
|
|
preview_cutoff = 20,
|
|
preview_height = function(_, _, max_lines)
|
|
return max_lines - 15
|
|
end,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|