home: vim: telescope: disable scrolling up
This commit is contained in:
parent
b8406735ba
commit
0fd5fb86b1
|
@ -2,6 +2,14 @@ lua << EOF
|
||||||
local telescope = require("telescope")
|
local telescope = require("telescope")
|
||||||
|
|
||||||
telescope.setup({
|
telescope.setup({
|
||||||
|
defaults = {
|
||||||
|
mappings = {
|
||||||
|
i = {
|
||||||
|
-- I want the normal readline mappings rather than scrolling
|
||||||
|
["<C-u>"] = false,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
extensions = {
|
extensions = {
|
||||||
fzf = {
|
fzf = {
|
||||||
fuzzy = true,
|
fuzzy = true,
|
||||||
|
|
Loading…
Reference in a new issue