Update nvim config.
This commit is contained in:
parent
d65a5daf96
commit
83a6862734
8 changed files with 171 additions and 11 deletions
21
nvim/lua/dwl/plugin-conf/telescope.lua
Normal file
21
nvim/lua/dwl/plugin-conf/telescope.lua
Normal 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,
|
||||
},
|
||||
},
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue