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