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

use plugin nvim-autopairs for autopair

delimitMate is not updated for a long time.
This commit is contained in:
jdhao
2024-07-13 23:16:42 +02:00
parent 2af616bb0d
commit ce1e13e2c9
5 changed files with 6 additions and 11 deletions

View File

@@ -221,7 +221,11 @@ local plugin_specs = {
}, event = "InsertEnter" },
-- Automatic insertion and deletion of a pair of characters
{ "Raimondi/delimitMate", event = "InsertEnter" },
{
'windwp/nvim-autopairs',
event = "InsertEnter",
config = true
},
-- Comment plugin
{ "tpope/vim-commentary", event = "VeryLazy" },