diff --git a/lua/plugin/telescope.lua b/lua/plugin/telescope.lua index 09a5d2a..84e8db9 100644 --- a/lua/plugin/telescope.lua +++ b/lua/plugin/telescope.lua @@ -13,6 +13,48 @@ return { }, sorting_strategy = 'ascending', }, + live_grep = { + layout_config = { + prompt_position = 'top', + }, + sorting_strategy = 'ascending', + }, + current_buffer_fuzzy_find = { + layout_config = { + prompt_position = 'top', + }, + sorting_strategy = 'ascending', + }, + grep_string = { + layout_config = { + prompt_position = 'top', + }, + sorting_strategy = 'ascending', + }, + git_files = { + layout_config = { + prompt_position = 'top', + }, + sorting_strategy = 'ascending', + }, + keymaps = { + layout_config = { + prompt_position = 'top', + }, + sorting_strategy = 'ascending', + }, + oldfiles = { + layout_config = { + prompt_position = 'top', + }, + sorting_strategy = 'ascending', + }, + command_history = { + layout_config = { + prompt_position = 'top', + }, + sorting_strategy = 'ascending', + }, }, }) end,