don't lazyload telescope (breaks c-j c-k navigation)

This commit is contained in:
Chris 2021-07-10 19:35:54 -04:00
parent 93379a2977
commit d9ee4e00e9
2 changed files with 4 additions and 8 deletions

View file

@ -43,33 +43,30 @@ O.plugin.telescope = {
qflist_previewer = require("telescope.previewers").vim_buffer_qflist.new,
-- Developer configurations: Not meant for general override
buffer_previewer_maker = require("telescope.previewers").buffer_previewer_maker,
-- buffer_previewer_maker = require("telescope.previewers").buffer_previewer_maker,
mappings = {
i = {
["<C-c>"] = actions.close,
["<C-j>"] = actions.move_selection_next,
["<C-k>"] = actions.move_selection_previous,
-- ["<c-t>"] = trouble.open_with_trouble,
["<C-q>"] = actions.smart_send_to_qflist + actions.open_qflist,
["<CR>"] = actions.select_default + actions.center,
-- To disable a keymap, put [map] = false
-- So, to not map "<C-n>", just put
-- ["<c-t>"] = trouble.open_with_trouble,
-- ["<c-x>"] = false,
-- ["<esc>"] = actions.close,
-- Otherwise, just set the mapping to the function that you want it to be.
-- ["<C-i>"] = actions.select_horizontal,
-- Add up multiple actions
["<CR>"] = actions.select_default + actions.center,
-- You can perform as many actions in a row as you like
-- ["<CR>"] = actions.select_default + actions.center + my_cool_custom_action,
},
n = {
["<C-j>"] = actions.move_selection_next,
["<C-k>"] = actions.move_selection_previous,
-- ["<c-t>"] = trouble.open_with_trouble,
["<C-q>"] = actions.smart_send_to_qflist + actions.open_qflist,
-- ["<c-t>"] = trouble.open_with_trouble,
-- ["<C-i>"] = my_cool_custom_action,
},
},

View file

@ -45,7 +45,6 @@ return require("packer").startup(function(use)
use {
"nvim-telescope/telescope.nvim",
config = [[require('lv-telescope')]],
event = "BufWinEnter",
}
-- Autocomplete