aboutsummaryrefslogtreecommitdiff
path: root/common/config/nvim/lua/plugins/autopairs.lua
diff options
context:
space:
mode:
Diffstat (limited to 'common/config/nvim/lua/plugins/autopairs.lua')
-rwxr-xr-x[-rw-r--r--]common/config/nvim/lua/plugins/autopairs.lua22
1 files changed, 17 insertions, 5 deletions
diff --git a/common/config/nvim/lua/plugins/autopairs.lua b/common/config/nvim/lua/plugins/autopairs.lua
index 90b62b1..22dcf27 100644..100755
--- a/common/config/nvim/lua/plugins/autopairs.lua
+++ b/common/config/nvim/lua/plugins/autopairs.lua
@@ -1,9 +1,16 @@
-local status_ok, autopairs = pcall(require, "nvim-autopairs")
-if not status_ok then
- return
-end
+local M = {}
-autopairs.setup({
+--- Setup and configure nvim-autopairs
+-- This function initializes and configures the autopairs plugin
+-- @return boolean True if setup was successful, false otherwise
+function M.setup()
+ local ok, autopairs = pcall(require, "nvim-autopairs")
+ if not ok then
+ return false
+ end
+
+ -- Configure autopairs
+ autopairs.setup({
check_ts = true,
ts_config = {
lua = { "string", "source" },
@@ -85,3 +92,8 @@ cmp.event:on(
-- return
--end
--cmp.event:on("confirm_done", cmp_autopairs.on_confirm_done { map_char = { tex = "" } })
+
+ return true
+end
+
+return M