home: vim: telescope: disable scrolling up

This commit is contained in:
Bruno BELANYI 2022-03-11 14:03:18 +01:00
parent b8406735ba
commit 0fd5fb86b1

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,