local t = require("telescope") local z_utils = require("telescope._extensions.zoxide.utils") -- Configure the extension t.setup({ extensions = { zoxide = { prompt_title = "[ Queries ]", mappings = { default = { after_action = function(selection) print("Update to (" .. selection.z_score .. ") " .. selection.path) end }, [""] = { before_action = function(selection) print("before C-s") end, action = function(selection) vim.cmd("edit " .. selection.path) end }, [""] = { action = z_utils.create_basic_command("split") }, }, }, }, }) -- Load the extension t.load_extension('zoxide') -- Add a mapping require("telescope").load_extension("fzy_native") require("telescope").load_extension "file_browser" require('telescope').load_extension('dap') require("telescope").load_extension('harpoon')