feat(plugins): nvim-autopairs ts support

This commit is contained in:
Matt Leong 2021-12-20 15:17:39 -08:00
parent f6139b8ac2
commit f562882989

View file

@ -1,4 +1,10 @@
require('nvim-autopairs').setup({
check_ts = true,
ts_config = {
lua = { 'string', 'source' },
javascript = { 'string', 'template_string' },
java = false,
},
disable_filetype = { 'TelescopePrompt', 'vim' },
})