129 lines
3.1 KiB
Lua
129 lines
3.1 KiB
Lua
local status_ok, telescope = pcall(require, "telescope")
|
|
if not status_ok then
|
|
return
|
|
end
|
|
|
|
local actions = require "telescope.actions"
|
|
local icons = require "chris.icons"
|
|
|
|
telescope.setup {
|
|
defaults = {
|
|
|
|
prompt_prefix = icons.ui.Telescope .. " > ",
|
|
selection_caret = " ",
|
|
path_display = { "smart" },
|
|
|
|
file_ignore_patterns = {
|
|
".git/",
|
|
"target/",
|
|
"docs/",
|
|
"vendor/*",
|
|
"%.lock",
|
|
"__pycache__/*",
|
|
"%.sqlite3",
|
|
"%.ipynb",
|
|
"node_modules/*",
|
|
"%.svg",
|
|
"%.otf",
|
|
"%.ttf",
|
|
"%.webp",
|
|
".dart_tool/",
|
|
".github/",
|
|
".gradle/",
|
|
".idea/",
|
|
".settings/",
|
|
".vscode/",
|
|
"__pycache__/",
|
|
"build/",
|
|
"env/",
|
|
"gradle/",
|
|
"node_modules/",
|
|
"%.pdb",
|
|
"%.dll",
|
|
"%.class",
|
|
"%.exe",
|
|
"%.cache",
|
|
"%.ico",
|
|
"%.pdf",
|
|
"%.dylib",
|
|
"%.jar",
|
|
"%.docx",
|
|
"%.met",
|
|
"smalljre_*/*",
|
|
".vale/",
|
|
"%.burp",
|
|
"%.mp4",
|
|
"%.mkv",
|
|
"%.rar",
|
|
"%.zip",
|
|
"%.7z",
|
|
"%.tar",
|
|
"%.bz2",
|
|
"%.epub",
|
|
"%.flac",
|
|
"%.tar.gz",
|
|
},
|
|
|
|
mappings = {
|
|
i = {
|
|
["<C-n>"] = actions.cycle_history_next,
|
|
["<C-p>"] = actions.cycle_history_prev,
|
|
|
|
["<C-j>"] = actions.move_selection_next,
|
|
["<C-k>"] = actions.move_selection_previous,
|
|
|
|
["<C-c>"] = actions.close,
|
|
|
|
["<Down>"] = actions.move_selection_next,
|
|
["<Up>"] = actions.move_selection_previous,
|
|
|
|
["<CR>"] = actions.select_default,
|
|
["<C-s>"] = actions.select_horizontal,
|
|
["<C-v>"] = actions.select_vertical,
|
|
["<C-t>"] = actions.select_tab,
|
|
|
|
["<c-d>"] = require("telescope.actions").delete_buffer,
|
|
|
|
["<C-u>"] = actions.preview_scrolling_up,
|
|
["<C-d>"] = actions.preview_scrolling_down,
|
|
|
|
["<C-l>"] = actions.complete_tag,
|
|
["<C-h>"] = actions.which_key, -- keys from pressing <C-h>
|
|
["<esc>"] = actions.close,
|
|
},
|
|
|
|
n = {
|
|
["<esc>"] = actions.close,
|
|
["<CR>"] = actions.select_default,
|
|
["<C-x>"] = actions.select_horizontal,
|
|
["<C-v>"] = actions.select_vertical,
|
|
["<C-t>"] = actions.select_tab,
|
|
|
|
["j"] = actions.move_selection_next,
|
|
["k"] = actions.move_selection_previous,
|
|
["H"] = actions.move_to_top,
|
|
["M"] = actions.move_to_middle,
|
|
["L"] = actions.move_to_bottom,
|
|
["q"] = actions.close,
|
|
["dd"] = require("telescope.actions").delete_buffer,
|
|
["s"] = actions.select_horizontal,
|
|
["v"] = actions.select_vertical,
|
|
["t"] = actions.select_tab,
|
|
|
|
["<Down>"] = actions.move_selection_next,
|
|
["<Up>"] = actions.move_selection_previous,
|
|
["gg"] = actions.move_to_top,
|
|
["G"] = actions.move_to_bottom,
|
|
|
|
["<C-u>"] = actions.preview_scrolling_up,
|
|
["<C-d>"] = actions.preview_scrolling_down,
|
|
|
|
["<PageUp>"] = actions.results_scrolling_up,
|
|
["<PageDown>"] = actions.results_scrolling_down,
|
|
|
|
["?"] = actions.which_key,
|
|
},
|
|
},
|
|
},
|
|
}
|