small nvim config tweaks

This commit is contained in:
2023-06-05 14:49:07 -04:00
parent 9142de8416
commit dff04fb894
2 changed files with 9 additions and 2 deletions
+8 -1
View File
@@ -3,5 +3,12 @@ if not autopairs_setup then
return
end
autopairs.setup()
autopairs.setup({
check_ts = true,
ts_config = {
lua = { "string" },
javascript = { "template_string" },
java = false,
},
})