mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 16:39:00 +02:00
25 lines
819 B
Nix
25 lines
819 B
Nix
|
{
|
||
|
empty = {
|
||
|
plugins.haskell-scope-highlighting.enable = true;
|
||
|
plugins.treesitter.enable = true;
|
||
|
};
|
||
|
|
||
|
testHaskellHighlights = {
|
||
|
plugins.haskell-scope-highlighting.enable = true;
|
||
|
plugins.treesitter.enable = true;
|
||
|
highlight = {
|
||
|
HaskellCurrentScope.bg = "black";
|
||
|
HaskellParentScope1.bg = "black";
|
||
|
HaskellParentScope2.bg = "black";
|
||
|
HaskellParentScope3.bg = "black";
|
||
|
HaskellVariableDeclarationWithinScope.bg = "black";
|
||
|
HaskellVariableDeclaredWithinFile.bg = "black";
|
||
|
HaskellVariableDeclaredWithinParent1.bg = "black";
|
||
|
HaskellVariableDeclaredWithinParent2.bg = "black";
|
||
|
HaskellVariableDeclaredWithinParent3.bg = "black";
|
||
|
HaskellVariableDeclaredWithinScope.bg = "black";
|
||
|
HaskellVariableNotDeclaredWithinFile.bg = "black";
|
||
|
};
|
||
|
};
|
||
|
}
|