We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64a070c commit 4e4364cCopy full SHA for 4e4364c
lua/modules/configs/editor/matchup.lua
@@ -0,0 +1,5 @@
1
+return function()
2
+ vim.g.matchup_transmute_enabled = 1
3
+ vim.g.matchup_surround_enabled = 1
4
+ vim.g.matchup_matchparen_offscreen = { method = "popup" }
5
+end
lua/modules/plugins/editor.lua
@@ -121,8 +121,11 @@ editor["nvim-treesitter/nvim-treesitter"] = {
121
event = "BufReadPre",
122
config = require("editor.treesitter"),
123
dependencies = {
124
- { "andymass/vim-matchup" },
125
{ "nvim-treesitter/nvim-treesitter-textobjects" },
+ {
126
+ "andymass/vim-matchup",
127
+ init = require("editor.matchup"),
128
+ },
129
{
130
"windwp/nvim-ts-autotag",
131
config = require("editor.ts-autotag"),
0 commit comments