1
0
mirror of https://github.com/jdhao/nvim-config.git synced 2025-06-08 14:14:33 +02:00

Change auto-pairs activation event

It seems that BufReadPost does not work sometimes.
This commit is contained in:
jdhao 2021-07-05 23:16:38 +08:00
parent f47d8dc55e
commit 02987f401d

View File

@ -112,7 +112,7 @@ require('packer').startup(
use {'honza/vim-snippets', event = {'InsertEnter'}}
-- Automatic insertion and deletion of a pair of characters
use {'jiangmiao/auto-pairs', event = {'BufReadPost'}}
use {'jiangmiao/auto-pairs', event = {'VimEnter'}}
-- Comment plugin
use 'tpope/vim-commentary'