We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abd30ec commit d0d53d5Copy full SHA for d0d53d5
1 file changed
lua/tiny/pairs.lua
@@ -5,7 +5,6 @@ the smallest pair plugin in the universe
5
local M = {}
6
7
local config = {
8
- enabled = true,
9
pairs = {
10
['('] = ')',
11
['['] = ']',
@@ -82,14 +81,6 @@ function M.mappairs()
82
81
map('i', '<BS>', autopairs_bs, opts)
83
end
84
85
-function M.setup(opts)
86
- if opts then
87
- config = vim.tbl_deep_extend("force", config, opts)
88
- end
89
-
90
- if config.enabled then
91
- M.mappairs()
92
93
-end
+M.mappairs()
94
95
return M
0 commit comments