summaryrefslogtreecommitdiff
path: root/lua/plugins/autopairs.lua
diff options
context:
space:
mode:
authorBrahmajit Das <brahmajit.xyz@gmail.com>2024-03-09 22:06:39 +0530
committerBrahmajit Das <brahmajit.xyz@gmail.com>2024-03-09 22:06:39 +0530
commit8da47a6335f4662f12a191db101b28d143659f3a (patch)
treedb7c962aa957a9014adf886c067940a153a5ed2f /lua/plugins/autopairs.lua
parentf44fd24bb87f2bc615d81dc40017fcdca3462a76 (diff)
deleting old config files
Signed-off-by: Brahmajit Das <brahmajit.xyz@gmail.com>
Diffstat (limited to 'lua/plugins/autopairs.lua')
-rw-r--r--lua/plugins/autopairs.lua17
1 files changed, 0 insertions, 17 deletions
diff --git a/lua/plugins/autopairs.lua b/lua/plugins/autopairs.lua
deleted file mode 100644
index 340bdea..0000000
--- a/lua/plugins/autopairs.lua
+++ /dev/null
@@ -1,17 +0,0 @@
-local disable_filetype = { "TelescopePrompt", "spectre_panel" }
-local disable_in_macro = false -- disable when recording or executing a macro
-local disable_in_visualblock = false -- disable when insert after visual block mode
-local disable_in_replace_mode = true
-local ignored_next_char = [=[[%w%%%'%[%"%.%`%$]]=]
-local enable_moveright = true
-local enable_afterquote = true -- add bracket pairs after quote
-local enable_check_bracket_line = true --- check bracket in same line
-local enable_bracket_in_quote = true --
-local enable_abbr = false -- trigger abbreviation
-local break_undo = true -- switch for basic rule break undo sequence
-local check_ts = false
-local map_cr = true
-local map_bs = true -- map the <BS> key
-local map_c_h = false -- Map the <C-h> key to delete a pair
-local map_c_w = false -- map <c-w> to delete a pair if possible
-require('nvim-autopairs').setup()