first commit

This commit is contained in:
Blake Ridgway 2024-12-24 23:01:45 -06:00
commit 15e643aa8e
41 changed files with 1623 additions and 0 deletions

View file

@ -0,0 +1,13 @@
-- Auto-completion of bracket/paren/quote pairs
return {
-- https://github.com/windwp/nvim-autopairs
'windwp/nvim-autopairs',
event = "InsertEnter",
opts = {
check_ts = true, -- enable treesitter
ts_config = {
lua = { "string" }, -- don't add pairs in lua string treesitter nodes
javascript = { "template_string" }, -- don't add pairs in javascript template_string
}
}
}