summaryrefslogtreecommitdiff
path: root/lua/plugins/autopairs.lua
diff options
context:
space:
mode:
authorNaz <ndpm13@ch-naseem.com>2025-09-02 10:12:27 +0100
committerNaz <ndpm13@ch-naseem.com>2025-09-02 10:12:27 +0100
commiteb1e6c6c345c4a588c28d2937949adc1b440133f (patch)
tree62bade01156700bfcc7aabc0369f87819b07e8a5 /lua/plugins/autopairs.lua
parent16ed97e8c41b93c6d8fda33529ccd334e224a99c (diff)
🦄org: now using an org document to configure nvim.
I know I messed up
Diffstat (limited to 'lua/plugins/autopairs.lua')
-rw-r--r--lua/plugins/autopairs.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/plugins/autopairs.lua b/lua/plugins/autopairs.lua
index 34de81c..ee1683f 100644
--- a/lua/plugins/autopairs.lua
+++ b/lua/plugins/autopairs.lua
@@ -3,7 +3,7 @@ return {
event = "InsertEnter",
config = function()
require("nvim-autopairs").setup({
- check_ts = true, -- Enable autopairs for treesitter
+ check_ts = true,
})
end,
}