Files
nixos-config/pkgs/nixvim/config/plugins/vim-matchup.nix

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;
};
};
}