1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-24 06:40:05 +08:00
SpaceVim/config/plugins/telescope.vim

26 lines
724 B
VimL
Raw Normal View History

2022-05-16 22:20:10 +08:00
lua require('telescope').load_extension('menu')
lua require('telescope').load_extension('messages')
lua <<EOF
local actions = require("telescope.actions")
require("telescope").setup{
defaults = {
mappings = {
i = {
-- the default key binding should same as other fuzzy finder layer
-- tab move to next
["<C-j>"] = actions.move_selection_next,
["<Tab>"] = actions.move_selection_next,
["<C-k>"] = actions.move_selection_previous,
["<S-Tab>"] = actions.move_selection_previous,
["<Esc>"] = actions.close,
["<C-h>"] = "which_key"
},
},
sorting_strategy = "ascending",
layout_config = {
prompt_position = "bottom"
}
}
}
EOF