LunarVim/lua/lv-matchup/init.lua

8 lines
110 B
Lua
Raw Normal View History

2021-06-28 09:04:28 +02:00
local M = {}
M.config = function()
2021-07-05 03:14:01 +02:00
vim.g.matchup_matchparen_offscreen = { method = "popup" }
2021-06-28 09:04:28 +02:00
end
return M