34 lines
1.5 KiB
Lua
34 lines
1.5 KiB
Lua
--
|
|
-- ███╗ ██╗███████╗ ██████╗ ██╗ ██╗██╗███╗ ███╗
|
|
-- ████╗ ██║██╔════╝██╔═══██╗██║ ██║██║████╗ ████║
|
|
-- ██╔██╗ ██║█████╗ ██║ ██║██║ ██║██║██╔████╔██║
|
|
-- ██║╚██╗██║██╔══╝ ██║ ██║╚██╗ ██╔╝██║██║╚██╔╝██║
|
|
-- ██║ ╚████║███████╗╚██████╔╝ ╚████╔╝ ██║██║ ╚═╝ ██║
|
|
-- ╚═╝ ╚═══╝╚══════╝ ╚═════╝ ╚═══╝ ╚═╝╚═╝ ╚═╝
|
|
--
|
|
-- File: plugins/configs/telescope.lua
|
|
-- Description: nvim-telescope config
|
|
-- Author: Kien Nguyen-Tuan <kiennt2609@gmail.com>
|
|
return {
|
|
defaults = {
|
|
prompt_prefix = " ",
|
|
selection_caret = " ",
|
|
entry_prefix = " ",
|
|
sorting_strategy = "ascending",
|
|
layout_config = {
|
|
horizontal = {
|
|
prompt_position = "top",
|
|
preview_width = 0.55,
|
|
},
|
|
width = 0.87,
|
|
height = 0.80,
|
|
},
|
|
mappings = {
|
|
n = { ["q"] = require("telescope.actions").close },
|
|
},
|
|
},
|
|
|
|
extensions_list = { "themes", "terms" },
|
|
extensions = {},
|
|
}
|