nvim: Lazy load editing plugins after entering insert
This commit is contained in:
parent
7e3377d60d
commit
683cd64b26
1 changed files with 2 additions and 2 deletions
|
@ -2,7 +2,7 @@ return {
|
|||
-- adds exchange operator with cx. common use: cxiw . on 2 words to switch
|
||||
{
|
||||
"tommcdo/vim-exchange",
|
||||
event = "VeryLazy",
|
||||
event = "InsertEnter",
|
||||
},
|
||||
-- Align tables and other alignable things
|
||||
{
|
||||
|
@ -14,7 +14,7 @@ return {
|
|||
},
|
||||
},
|
||||
-- surround things with other things using ys/cs/ds
|
||||
{ "kylechui/nvim-surround", version = "*", config = true, event = "VeryLazy" },
|
||||
{ "kylechui/nvim-surround", config = true, event = "InsertEnter" },
|
||||
|
||||
-- extend the ^a / ^x possibilities to dates, hex, alphabets, markdown headers
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue