Nvim: use default path in telescope
This commit is contained in:
parent
949319f1a9
commit
c255a9ea7f
1 changed files with 4 additions and 2 deletions
|
@ -3,8 +3,10 @@ return function()
|
|||
local builtin = require("telescope.builtin")
|
||||
|
||||
telescope.setup({
|
||||
defaults = { path_display = { "smart" } },
|
||||
pickers = { find_files = { find_command = { "fd", "-Ht", "f" } }, lsp_references = { show_line = false } },
|
||||
pickers = {
|
||||
find_files = { find_command = { "fd", "-Ht", "f" } },
|
||||
lsp_references = { show_line = false },
|
||||
},
|
||||
})
|
||||
|
||||
telescope.load_extension("fzf")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue