feat: auto-close brackets

This commit is contained in:
Michael Mandl 2022-02-21 17:32:12 +01:00
parent 9007d425b3
commit 32433cf27f
Signed by: mandlm
GPG key ID: 4AA25D647AA54CC7
2 changed files with 16 additions and 2 deletions

View file

@ -133,6 +133,14 @@ return require('packer').startup(function(use)
end,
})
-- auto-close brackets
use({
"windwp/nvim-autopairs",
config = function ()
require("nvim-autopairs").setup({})
end,
})
if packer_bootstrap then
require('packer').sync()
end