Files
shed/modules/sys/software/nixvim/plugins/vim-matchup.nix
2024-11-02 17:12:00 -04:00

24 lines
442 B
Nix
Executable File

{
programs.nixvim = {
plugins.vim-matchup = {
enable = true;
enableSurround = true;
textObj.enable = true;
motion = {
enable = true;
cursorEnd = true;
};
matchParen = {
hiSurroundAlways = true;
offscreen = {
method = "popup";
};
};
treesitterIntegration = {
enable = true;
includeMatchWords = true;
};
};
};
}