diff --git a/.config/nvim/lua/plugins/editor.lua b/.config/nvim/lua/plugins/editor.lua index c1ca23a..0ce8233 100644 --- a/.config/nvim/lua/plugins/editor.lua +++ b/.config/nvim/lua/plugins/editor.lua @@ -3,4 +3,27 @@ return { "folke/flash.nvim", enabled = false, }, + { + "telescope.nvim", + opts = { + defaults = { + layout_strategy = "vertical", + layout_config = { + anchor = "top", + vertical = { + prompt_position = "top", + mirror = true, + -- preview_width = 0.5, + preview_height = 0.5, + }, + width = 0.9, + height = 0.9, + preview_cutoff = 10, + }, + -- sorting_strategy = "ascending", + winblend = 0, + wrap_results = true, + }, + }, + }, }