mirror of
https://github.com/LunarVim/LunarVim.git
synced 2025-08-31 07:09:23 +02:00
fix(telescope): prompt position when find/grep LunarVim files (#1711)
This commit is contained in:
parent
85e7b7804a
commit
e2df61f256
1 changed files with 2 additions and 3 deletions
|
@ -26,7 +26,6 @@ function M.config()
|
|||
layout_strategy = "horizontal",
|
||||
layout_config = {
|
||||
width = 0.75,
|
||||
prompt_position = "bottom",
|
||||
preview_cutoff = 120,
|
||||
horizontal = { mirror = false },
|
||||
vertical = { mirror = false },
|
||||
|
@ -91,7 +90,7 @@ function M.find_lunarvim_files(opts)
|
|||
local theme_opts = themes.get_ivy {
|
||||
sorting_strategy = "ascending",
|
||||
layout_strategy = "bottom_pane",
|
||||
prompt = ">> ",
|
||||
prompt_prefix = ">> ",
|
||||
prompt_title = "~ LunarVim files ~",
|
||||
cwd = utils.join_paths(get_runtime_dir(), "lvim"),
|
||||
find_command = { "git", "ls-files" },
|
||||
|
@ -106,7 +105,7 @@ function M.grep_lunarvim_files(opts)
|
|||
local theme_opts = themes.get_ivy {
|
||||
sorting_strategy = "ascending",
|
||||
layout_strategy = "bottom_pane",
|
||||
prompt = ">> ",
|
||||
prompt_prefix = ">> ",
|
||||
prompt_title = "~ search LunarVim ~",
|
||||
cwd = utils.join_paths(get_runtime_dir(), "lvim"),
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue