Refactored file structure to make more sense, made default.nixes less verbose
This commit is contained in:
23
modules/sys/software/nixvim/plugins/vim-matchup.nix
Normal file
23
modules/sys/software/nixvim/plugins/vim-matchup.nix
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
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;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user