a bit sloppy but working

This commit is contained in:
2022-06-17 21:39:40 -04:00
parent 07d85081aa
commit 142017e051
45 changed files with 3521 additions and 9 deletions

View File

@@ -0,0 +1,10 @@
require("nvim-autopairs").setup({
enable_check_bracket_line = false, -- Don't add pairs if it already has a close pair in the same line
ignored_next_char = "[%w%.]", -- will ignore alphanumeric and `.` symbol
check_ts = true, -- use treesitter to check for a pair.
ts_config = {
lua = { "string" }, -- it will not add pair on that treesitter node
javascript = { "template_string" },
java = false, -- don't check treesitter on java
},
})