Update color scheme and helix theme
This commit is contained in:
parent
f77da666db
commit
d154ffd730
@ -51,9 +51,9 @@ in {
|
|||||||
themes.colors = {
|
themes.colors = {
|
||||||
# H = 0, S = 0%
|
# H = 0, S = 0%
|
||||||
base00 = "000000"; # L = 0%
|
base00 = "000000"; # L = 0%
|
||||||
base01 = "333333"; # L = 20%
|
base01 = "1a1a1a"; # L = 10%
|
||||||
base02 = "666666"; # L = 40%
|
base02 = "333333"; # L = 20%
|
||||||
base03 = "999999"; # L = 60%
|
base03 = "808080"; # L = 50%
|
||||||
base04 = "cccccc"; # L = 80%
|
base04 = "cccccc"; # L = 80%
|
||||||
base05 = "ffffff"; # L = 100%
|
base05 = "ffffff"; # L = 100%
|
||||||
base06 = "e6e6e6"; # L = 90%
|
base06 = "e6e6e6"; # L = 90%
|
||||||
|
@ -39,6 +39,9 @@
|
|||||||
[[language]]
|
[[language]]
|
||||||
name = "nix"
|
name = "nix"
|
||||||
formatter = { command = "nixfmt", args = [] }
|
formatter = { command = "nixfmt", args = [] }
|
||||||
|
[[language]]
|
||||||
|
name = "markdown"
|
||||||
|
language-server = { command = "vscode-markdown-language-server", args = ["--stdio"] }
|
||||||
'';
|
'';
|
||||||
programs.helix = {
|
programs.helix = {
|
||||||
enable = true;
|
enable = true;
|
||||||
@ -152,6 +155,17 @@
|
|||||||
fg = base0A;
|
fg = base0A;
|
||||||
modifiers = [ "bold" ];
|
modifiers = [ "bold" ];
|
||||||
};
|
};
|
||||||
|
"markup.bold" = { modifiers = [ "bold" ]; };
|
||||||
|
"markup.italic" = { modifiers = [ "italic" ]; };
|
||||||
|
"markup.link" = {
|
||||||
|
underline.style = "line";
|
||||||
|
fg = base0D;
|
||||||
|
};
|
||||||
|
"markup.quote" = {
|
||||||
|
bg = base01;
|
||||||
|
modifiers = [ "italic" ];
|
||||||
|
};
|
||||||
|
"markup.raw" = { bg = base01; };
|
||||||
"label" = base0B;
|
"label" = base0B;
|
||||||
"namespace" = base0F;
|
"namespace" = base0F;
|
||||||
"diff.plus" = base0B;
|
"diff.plus" = base0B;
|
||||||
|
Loading…
Reference in New Issue
Block a user