1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-21 17:59:41 +01:00
nixvim/plugins/by-name/blink-indent/default.nix
2025-11-14 18:34:30 +00:00

20 lines
409 B
Nix

{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "blink-indent";
moduleName = "blink.indent";
maintainers = [ lib.maintainers.HeitorAugustoLN ];
settingsExample = {
static.highlights = [
"BlinkIndentRed"
"BlinkIndentOrange"
"BlinkIndentYellow"
"BlinkIndentGreen"
"BlinkIndentViolet"
"BlinkIndentCyan"
];
scope.underline.enable = true;
};
}