2022-03-01 00:07:07 +00:00
|
|
|
|
local M = {}
|
|
|
|
|
|
|
|
|
|
function M.config()
|
2023-01-10 18:21:09 +00:00
|
|
|
|
local status_ok, telescope = pcall(require, 'telescope')
|
2022-03-01 00:07:07 +00:00
|
|
|
|
if not status_ok then
|
|
|
|
|
return
|
|
|
|
|
end
|
|
|
|
|
|
2023-01-10 18:21:09 +00:00
|
|
|
|
local actions = require('telescope.actions')
|
2022-09-27 16:25:37 +00:00
|
|
|
|
--telescope.load_extension "fzf"
|
2022-03-01 00:07:07 +00:00
|
|
|
|
|
2023-01-10 18:21:09 +00:00
|
|
|
|
telescope.setup({
|
2022-03-01 00:07:07 +00:00
|
|
|
|
defaults = {
|
2023-01-10 18:21:09 +00:00
|
|
|
|
prompt_prefix = ' ',
|
|
|
|
|
selection_caret = '+ ',
|
|
|
|
|
-- emojis cause annoying highlight behavior
|
|
|
|
|
-- waiting on https://github.com/nvim-telescope/telescope.nvim/issues/1841
|
2022-10-11 16:49:06 +00:00
|
|
|
|
--selection_caret = "❯ ",
|
2023-01-10 18:21:09 +00:00
|
|
|
|
path_display = { 'truncate' },
|
2022-03-01 00:07:07 +00:00
|
|
|
|
|
|
|
|
|
mappings = {
|
|
|
|
|
i = {
|
2023-01-10 18:21:09 +00:00
|
|
|
|
['<C-n>'] = actions.cycle_history_next,
|
|
|
|
|
['<C-p>'] = actions.cycle_history_prev,
|
2022-03-01 00:07:07 +00:00
|
|
|
|
|
2023-01-10 18:21:09 +00:00
|
|
|
|
['<C-j>'] = actions.move_selection_next,
|
|
|
|
|
['<C-k>'] = actions.move_selection_previous,
|
2022-03-01 00:07:07 +00:00
|
|
|
|
|
2023-01-10 18:21:09 +00:00
|
|
|
|
['<C-c>'] = actions.close,
|
2022-03-01 00:07:07 +00:00
|
|
|
|
|
2023-01-10 18:21:09 +00:00
|
|
|
|
['<Down>'] = actions.move_selection_next,
|
|
|
|
|
['<Up>'] = actions.move_selection_previous,
|
2022-03-01 00:07:07 +00:00
|
|
|
|
|
2023-01-10 18:21:09 +00:00
|
|
|
|
['<CR>'] = actions.select_default,
|
|
|
|
|
['<C-x>'] = actions.select_horizontal,
|
|
|
|
|
['<C-v>'] = actions.select_vertical,
|
|
|
|
|
['<C-t>'] = actions.select_tab,
|
2022-03-01 00:07:07 +00:00
|
|
|
|
|
2023-01-10 18:21:09 +00:00
|
|
|
|
['<C-u>'] = actions.preview_scrolling_up,
|
|
|
|
|
['<C-d>'] = actions.preview_scrolling_down,
|
2022-03-01 00:07:07 +00:00
|
|
|
|
|
2023-01-10 18:21:09 +00:00
|
|
|
|
['<PageUp>'] = actions.results_scrolling_up,
|
|
|
|
|
['<PageDown>'] = actions.results_scrolling_down,
|
2022-03-01 00:07:07 +00:00
|
|
|
|
|
2023-01-10 18:21:09 +00:00
|
|
|
|
['<Tab>'] = actions.toggle_selection,
|
|
|
|
|
['<S-Tab>'] = actions.toggle_selection,
|
2022-10-11 16:49:06 +00:00
|
|
|
|
|
2023-01-10 18:21:09 +00:00
|
|
|
|
['<C-l>'] = actions.complete_tag,
|
2022-03-01 00:07:07 +00:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
n = {
|
2023-01-10 18:21:09 +00:00
|
|
|
|
['<esc>'] = actions.close,
|
|
|
|
|
['<CR>'] = actions.select_default,
|
|
|
|
|
['<C-x>'] = actions.select_horizontal,
|
|
|
|
|
['<C-v>'] = actions.select_vertical,
|
|
|
|
|
['<C-t>'] = actions.select_tab,
|
2022-03-01 00:07:07 +00:00
|
|
|
|
|
2023-01-10 18:21:09 +00:00
|
|
|
|
['<Tab>'] = actions.toggle_selection,
|
|
|
|
|
['<S-Tab>'] = actions.toggle_selection,
|
2022-03-01 00:07:07 +00:00
|
|
|
|
|
2023-01-10 18:21:09 +00:00
|
|
|
|
['j'] = actions.move_selection_next,
|
|
|
|
|
['k'] = actions.move_selection_previous,
|
2022-03-01 00:07:07 +00:00
|
|
|
|
|
2023-01-10 18:21:09 +00:00
|
|
|
|
['gg'] = actions.move_to_top,
|
|
|
|
|
['G'] = actions.move_to_bottom,
|
2022-03-01 00:07:07 +00:00
|
|
|
|
|
2023-01-10 18:21:09 +00:00
|
|
|
|
['<Down>'] = actions.move_selection_next,
|
|
|
|
|
['<Up>'] = actions.move_selection_previous,
|
2022-10-11 16:49:06 +00:00
|
|
|
|
|
2023-01-10 18:21:09 +00:00
|
|
|
|
['<C-u>'] = actions.preview_scrolling_up,
|
|
|
|
|
['<C-d>'] = actions.preview_scrolling_down,
|
2022-03-01 00:07:07 +00:00
|
|
|
|
|
2023-01-10 18:21:09 +00:00
|
|
|
|
['<PageUp>'] = actions.results_scrolling_up,
|
|
|
|
|
['<PageDown>'] = actions.results_scrolling_down,
|
2022-03-01 00:07:07 +00:00
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
2022-05-01 17:43:11 +00:00
|
|
|
|
pickers = {
|
|
|
|
|
lsp_code_actions = {
|
|
|
|
|
theme = 'cursor',
|
|
|
|
|
},
|
|
|
|
|
},
|
2022-03-01 00:07:07 +00:00
|
|
|
|
extensions = {
|
2022-09-27 16:25:37 +00:00
|
|
|
|
-- fzf = {
|
|
|
|
|
-- fuzzy = true,
|
|
|
|
|
-- override_generic_sorter = true,
|
|
|
|
|
-- override_file_sorter = true,
|
|
|
|
|
-- case_mode = "smart_case",
|
|
|
|
|
-- },
|
2022-03-01 00:07:07 +00:00
|
|
|
|
},
|
2023-01-10 18:21:09 +00:00
|
|
|
|
})
|
2022-03-01 00:07:07 +00:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
return M
|