Use jdhao/better-escape.vim to handle jk as escape mappings
only for insert mode ( so also works on terminal too ) remove visual mode key binding, till we find a proper solution, because it is super annoying right now Original pr here: https://github.com/siduck76/NvChad/pull/160
This commit is contained in:
parent
268c37e52f
commit
3b05354337
3 changed files with 14 additions and 6 deletions
|
|
@ -16,6 +16,14 @@ return packer.startup(
|
|||
event = "VimEnter"
|
||||
}
|
||||
|
||||
use {
|
||||
"jdhao/better-escape.vim",
|
||||
event = "InsertEnter",
|
||||
config = function()
|
||||
require "plugins.others".escape()
|
||||
end
|
||||
}
|
||||
|
||||
use {
|
||||
"akinsho/nvim-bufferline.lua",
|
||||
after = "nvim-base16.lua",
|
||||
|
|
@ -247,7 +255,7 @@ return packer.startup(
|
|||
use {
|
||||
"tpope/vim-fugitive",
|
||||
cmd = {
|
||||
"Git"
|
||||
"Git"
|
||||
}
|
||||
}
|
||||
end
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue