nix-config/home/vim/plugin/settings/telescope.vim
Bruno BELANYI 8e56077d94
All checks were successful
continuous-integration/drone/push Build is passing
WIP: home: vim: notify
2022-03-11 10:38:42 +01:00

19 lines
387 B
VimL

lua << EOF
local telescope = require("telescope")
telescope.setup({
extensions = {
fzf = {
fuzzy = true,
override_generic_sorter = true,
override_file_sorter = true,
case_mode = "smart_case",
},
},
})
telescope.load_extension("fzf")
telescope.load_extension("lsp_handlers")
telescope.load_extension("notify")
EOF