add zoxide nvim telescope extension

This commit is contained in:
thek4n 2026-07-20 12:40:37 +03:00
parent 2e32505eda
commit a9be085511

View File

@ -31,6 +31,7 @@ return {
local actions = require("telescope.actions") local actions = require("telescope.actions")
telescope.load_extension("fzf") telescope.load_extension("fzf")
telescope.load_extension('zoxide')
telescope.setup({ telescope.setup({
pickers = { pickers = {
@ -125,5 +126,9 @@ return {
} }
}) })
end end
},
{
'jvgrootveld/telescope-zoxide',
enabled = vim.fn.executable("zoxide") == 1,
} }
} }