mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 05:50:05 +08:00
26 lines
724 B
VimL
26 lines
724 B
VimL
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
|