Files
shed/glasshouse-desktop/home/nixvim/config/plugins/vim-matchup.nix
2024-10-12 12:02:36 -04:00

18 lines
262 B
Nix

{
plugins.vim-matchup = {
enable = true;
enableSurround = true;
motion = {
enable = true;
cursorEnd = true;
};
matchParen = {
hiSurroundAlways = true;
};
treesitterIntegration = {
enable = true;
includeMatchWords = true;
};
};
}