From fda1b235bc9086a76a1ed6237af9ff40659782db Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Fri, 11 Mar 2022 14:03:18 +0100 Subject: [PATCH] home: vim: telescope: disable scrolling up --- home/vim/plugin/settings/telescope.vim | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/home/vim/plugin/settings/telescope.vim b/home/vim/plugin/settings/telescope.vim index 4731b39..66c0732 100644 --- a/home/vim/plugin/settings/telescope.vim +++ b/home/vim/plugin/settings/telescope.vim @@ -2,6 +2,14 @@ lua << EOF local telescope = require("telescope") telescope.setup({ + defaults = { + mappings = { + i = { + -- I want the normal readline mappings rather than scrolling + [""] = false, + } + } + }, extensions = { fzf = { fuzzy = true,