summaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua')
-rw-r--r--lua/core/autopairs.lua6
1 files changed, 2 insertions, 4 deletions
diff --git a/lua/core/autopairs.lua b/lua/core/autopairs.lua
index 53572a5b..9309bac9 100644
--- a/lua/core/autopairs.lua
+++ b/lua/core/autopairs.lua
@@ -5,8 +5,8 @@ function M.config()
active = true,
---@usage map <CR> on insert mode
map_cr = true,
- ---@usage it will auto insert after select function or method item,
- map_complete = map_complete_optional,
+ ---@usage auto insert after select function or method item,
+ map_complete = vim.bo.filetype ~= "tex",
---@usage check treesitter
check_ts = true,
ts_config = {
@@ -20,7 +20,6 @@ end
M.setup = function()
-- skip it, if you use another global object
_G.MUtils = {}
- local Log = require "core.log"
local npairs = require "nvim-autopairs"
local Rule = require "nvim-autopairs.rule"
@@ -38,7 +37,6 @@ M.setup = function()
end
if package.loaded["compe"] then
- local map_complete_optional = vim.bo.filetype ~= "tex"
require("nvim-autopairs.completion.compe").setup {
map_cr = lvim.builtin.autopairs.map_cr,
map_complete = lvim.builtin.autopairs.map_complete,