mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-21 17:59:41 +01:00
20 lines
409 B
Nix
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;
|
|
};
|
|
}
|