dotfiles/.config/nvim/lua/plugins/editor.lua

31 lines
514 B
Lua
Raw Normal View History

2023-09-28 11:13:02 +02:00
return {
{
"folke/flash.nvim",
enabled = false,
},
2023-11-02 20:04:31 +01:00
{
"telescope.nvim",
opts = {
defaults = {
2024-05-12 11:25:35 +02:00
layout_strategy = "horizontal",
2023-11-02 20:04:31 +01:00
layout_config = {
anchor = "top",
2024-05-12 11:25:35 +02:00
horizontal = {
2023-11-02 20:04:31 +01:00
prompt_position = "top",
2024-05-12 11:25:35 +02:00
mirror = false,
preview_width = 0.4,
-- preview_height = 0.5,
2023-11-02 20:04:31 +01:00
},
width = 0.9,
height = 0.9,
preview_cutoff = 10,
},
2024-05-12 11:25:35 +02:00
sorting_strategy = "ascending",
2023-11-02 20:04:31 +01:00
winblend = 0,
wrap_results = true,
2024-05-12 11:25:35 +02:00
previewer = false,
2023-11-02 20:04:31 +01:00
},
},
},
2023-09-28 11:13:02 +02:00
}