From 44c9efd1691dd22356fdd2d6f7d31b63df7c25c8 Mon Sep 17 00:00:00 2001
From: Brahmajit Das <brahmajit.xyz@gmail.com>
Date: Sat, 18 May 2024 03:28:39 +0530
Subject: nvim: plugins: autopair: removing unused local variables

Signed-off-by: Brahmajit Das <brahmajit.xyz@gmail.com>
---
 lua/plugins/autopair.lua | 16 ----------------
 1 file changed, 16 deletions(-)

(limited to 'lua')

diff --git a/lua/plugins/autopair.lua b/lua/plugins/autopair.lua
index 340bdea..0f77573 100644
--- a/lua/plugins/autopair.lua
+++ b/lua/plugins/autopair.lua
@@ -1,17 +1 @@
-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()
-- 
cgit v1.2.3