Update .config/lvim/config.lua

This commit is contained in:
Felix Delattre 2023-03-09 21:10:42 +01:00
parent cfd9c8e3c8
commit 307c6769c6
1 changed files with 1 additions and 0 deletions

View File

@ -25,6 +25,7 @@ lvim.keys.normal_mode["<C-s>"] = ":w<cr>"
-- vim.keymap.del("n", "<C-Up>")
-- override a default keymapping
-- lvim.keys.normal_mode["<C-q>"] = ":q<cr>" -- or vim.keymap.set("n", "<C-q>", ":q<cr>" )
vim.keymap.set("n", "<C-w>b", ":split<cr>")
-- Change Telescope navigation to use j and k for navigation and n and p for history in both input and normal mode.
-- we use protected-mode (pcall) just in case the plugin wasn't loaded yet.