1
0
Fork 0

Light theme again

This commit is contained in:
Malte 2023-01-01 14:56:14 +01:00
parent e8aee06f6d
commit 149f8b905f
2 changed files with 21 additions and 1 deletions

View file

@ -40,7 +40,27 @@ in {
}; };
programs.helix = { programs.helix = {
enable = true; enable = true;
themes.mytheme = {
inherits = "catppuccin_latte";
"diagnostic.info".underline = {
color = "blue";
style = "curl";
};
"diagnostic.hint".underline = {
color = "green";
style = "curl";
};
"diagnostic.warning".underline = {
color = "yellow";
style = "curl";
};
"diagnostic.error".underline = {
color = "red";
style = "curl";
};
};
settings = { settings = {
theme = "mytheme";
keys = let keys = let
common_keys = { common_keys = {
"C-s" = ":w"; "C-s" = ":w";

View file

@ -16,7 +16,7 @@
"ctrl+plus" = "change_font_size all +1.0"; "ctrl+plus" = "change_font_size all +1.0";
"ctrl+minus" = "change_font_size all -1.0"; "ctrl+minus" = "change_font_size all -1.0";
}; };
theme = "Tokyo Night"; theme = "Catppuccin-Latte";
settings = { settings = {
linux_display_server = "wayland"; # Causes ugly decorations linux_display_server = "wayland"; # Causes ugly decorations
hide_window_decorations = true; hide_window_decorations = true;