local actions = require("telescope.actions") require("telescope").setup({ defaults = { prompt_prefix = "ยป ", initial_mode = "insert", sorting_strategy = "ascending", layout_config = { prompt_position = "top", }, mappings = { i = { [""] = actions.close, [""] = actions.move_selection_next, [""] = actions.move_selection_previous, [""] = actions.toggle_selection + actions.move_selection_next, [""] = actions.send_selected_to_qflist, [""] = actions.send_to_qflist, [""] = actions.which_key, }, }, }, extensions = { fzf = { fuzzy = true, override_generic_sorter = true, override_file_sorter = true, case_mode = "smart_case", }, }, pickers = { find_files = { disable_devicons = true }, }, })