Update nvim config.

This commit is contained in:
Devin Haska 2025-05-27 12:15:55 -07:00
parent a77a3438c8
commit 429fbd3b10
8 changed files with 171 additions and 11 deletions

View file

@ -0,0 +1,21 @@
local telescope = require("telescope")
telescope.setup({
defaults = {
file_ignore_patterns = {
"%.png",
"^index.%",
},
prompt_prefix = "» ",
selection_caret = "",
selection_strategy = "reset",
sorting_strategy = "ascending",
layout_strategy = "horizontal",
path_display = { "smart" },
dynamic_preview_title = true,
layout_config = {
prompt_position = "top",
height = 0.8,
},
},
})