Nvim: use default path in telescope

This commit is contained in:
Marko Korhonen 2023-09-18 16:48:04 +03:00
parent f3dc5ebd34
commit 794e1b9d5c
Signed by: FunctionalHacker
GPG key ID: A7F78BCB859CD890

View file

@ -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")