mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-17 07:52:47 +01:00
plugins/blink-indent: init
This commit is contained in:
parent
6c2ac251d7
commit
3832b56fb6
2 changed files with 96 additions and 0 deletions
20
plugins/by-name/blink-indent/default.nix
Normal file
20
plugins/by-name/blink-indent/default.nix
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{ 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;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue