47 lines
985 B
Lua
47 lines
985 B
Lua
|
local telescope = require("telescope")
|
||
|
|
||
|
local actions = require("telescope.actions")
|
||
|
|
||
|
telescope.setup({
|
||
|
defaults = {
|
||
|
prompt_prefix = " ",
|
||
|
selection_caret = " ",
|
||
|
entry_prefix = " ",
|
||
|
initial_mode = "insert",
|
||
|
selection_strategy = "reset",
|
||
|
sorting_strategy = "ascending",
|
||
|
layout_strategy = "horizontal",
|
||
|
layout_config = {
|
||
|
horizontal = {
|
||
|
prompt_position = "bottom",
|
||
|
preview_width = 0.55,
|
||
|
results_width = 0.8,
|
||
|
},
|
||
|
vertical = {
|
||
|
mirror = false,
|
||
|
},
|
||
|
width = 0.87,
|
||
|
height = 0.80,
|
||
|
preview_cutoff = 120,
|
||
|
},
|
||
|
path_display = { "truncate" },
|
||
|
winblend = 0,
|
||
|
border = {},
|
||
|
borderchars = { "─", "│", "─", "│", "╭", "╮", "╯", "╰" },
|
||
|
color_devicons = true,
|
||
|
mappings = {
|
||
|
n = { ["q"] = require("telescope.actions").close },
|
||
|
},
|
||
|
},
|
||
|
extensions = {
|
||
|
fzf = {
|
||
|
fuzzy = true,
|
||
|
override_generic_sorter = true,
|
||
|
override_file_sorter = true,
|
||
|
case_mode = "ignore_case",
|
||
|
},
|
||
|
},
|
||
|
})
|
||
|
|
||
|
telescope.load_extension("fzf")
|