feat: add configuration for Matchup plugin

This commit is contained in:
2024-11-03 01:51:37 -04:00
parent 0261c76cec
commit 77f9dc8363
+12
View File
@@ -26,6 +26,7 @@ return {
},
{ -- Yanky
"gbprod/yanky.nvim",
requires = { "kkharji/sqlite.lua" },
opts = data.types.yanky,
},
{ -- VSCode
@@ -76,4 +77,15 @@ return {
"Chaitanyabsprip/fastaction.nvim",
opts = {},
},
{ -- Matchup
"andymass/vim-matchup",
setup = function()
-- may set any options here
vim.g.matchup_matchparen_offscreen = { method = "popup" }
end,
},
{ -- EasyAlign
"junegunn/vim-easy-align",
keys = data.keys.easyalign,
},
}