diff options
| author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-12-02 23:02:50 +0100 |
|---|---|---|
| committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-12-02 23:02:50 +0100 |
| commit | 8213801b89e9d2a27c6b1df50881b8476679b870 (patch) | |
| tree | ecd4a1e2489cff11c4e3c703dc80111d26b97a7a /.config/nvim/lua/core/autopairs.lua | |
| parent | a3690ed8ca90823787fbaddb72f0a1874f1e999d (diff) | |
LunarVim updates
Diffstat (limited to '.config/nvim/lua/core/autopairs.lua')
| -rw-r--r-- | .config/nvim/lua/core/autopairs.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.config/nvim/lua/core/autopairs.lua b/.config/nvim/lua/core/autopairs.lua index ec7f651..0759fd6 100644 --- a/.config/nvim/lua/core/autopairs.lua +++ b/.config/nvim/lua/core/autopairs.lua @@ -9,6 +9,7 @@ function M.config() all = "(", tex = "{", }, + enable_check_bracket_line = false, ---@usage check treesitter check_ts = true, ts_config = { @@ -26,6 +27,7 @@ M.setup = function() autopairs.setup { check_ts = options.builtin.autopairs.check_ts, + enable_check_bracket_line = options.builtin.autopairs.enable_check_bracket_line, ts_config = options.builtin.autopairs.ts_config, } |