home: vim: telescope: disable scrolling up

This commit is contained in:
Bruno BELANYI 2022-03-11 14:03:18 +01:00
parent 7060891b2d
commit fda1b235bc

View file

@ -2,6 +2,14 @@ lua << EOF
local telescope = require("telescope")
telescope.setup({
defaults = {
mappings = {
i = {
-- I want the normal readline mappings rather than scrolling
["<C-u>"] = false,
}
}
},
extensions = {
fzf = {
fuzzy = true,