Nvim: turn on smart path for telescope

This commit is contained in:
Marko Korhonen 2023-09-18 12:54:49 +03:00
parent 27e7e2458e
commit 370ae38846

View file

@ -3,6 +3,7 @@ return function()
local builtin = require("telescope.builtin") local builtin = require("telescope.builtin")
telescope.setup({ telescope.setup({
defaults = { path_display = { "smart" } },
pickers = { find_files = { find_command = { "fd", "-Ht", "f" } } }, pickers = { find_files = { find_command = { "fd", "-Ht", "f" } } },
}) })