nix-config/home/vim/plugin/settings/telescope.lua

25 lines
577 B
Lua
Raw Normal View History

local telescope = require("telescope")
telescope.setup({
defaults = {
mappings = {
i = {
["<C-h>"] = "which_key",
-- I want the normal readline mappings rather than scrolling
["<C-u>"] = false,
}
}
},
extensions = {
fzf = {
fuzzy = true,
override_generic_sorter = true,
override_file_sorter = true,
case_mode = "smart_case",
},
},
})
telescope.load_extension("fzf")
2022-03-08 20:57:28 +01:00
telescope.load_extension("lsp_handlers")