First emacs configuration

Also includes colorscheme changes
This commit is contained in:
Charlotte Van Petegem 2021-03-09 00:47:31 +01:00
parent 3ac380fd61
commit 912d84d889
No known key found for this signature in database
GPG key ID: 019E764B7184435A
9 changed files with 218 additions and 74 deletions

View file

@ -8,28 +8,34 @@
font_family = "Fira Code";
font_size = 9;
disable_ligatures = "cursor";
background = "#fbffff";
foreground = "#535c65";
selection_background = "#6d7782";
selection_foreground = "#fbffff";
url_color = "#906c33";
cursor = "#434951";
color0 = "#fbffff";
color1 = "#ae5865";
color2 = "#4d7f43";
color3 = "#906c33";
color4 = "#2b7ab2";
color5 = "#8f63a2";
color6 = "#008483";
color7 = "#535c65";
color8 = "#6d7782";
color9 = "#ae5865";
color10 = "#4d7f43";
color11 = "#906c33";
color12 = "#2b7ab2";
color13 = "#8f63a2";
color14 = "#008483";
color15 = "#434951";
background = "#ffffff";
foreground = "#000000";
cursor = "#777777";
url_color = "#0031a9";
# black
color0 = "#282828";
color8 = "#000000";
# red
color1 = "#a60000";
color9 = "#972500";
# green
color2 = "#005e00";
color10 = "#315b00";
# yellow
color3 = "#813e00";
color11 = "#70480f";
# blue
color4 = "#0031a9";
color12 = "#2544bb";
# magenta
color5 = "#721045";
color13 = "#8f0075";
# cyan
color6 = "#00538b";
color14 = "#30517f";
# white
color7 = "#f8f8f8";
color15 = "#ffffff";
enable_audio_bell = false;
visual_bell_duration = "0.25";
remember_window_size = false;

View file

@ -295,15 +295,15 @@ in
set send_charset="utf-8"
set print_command = "${pkgs.wl-clipboard}/bin/wl-copy"
color normal white default
color error red default
color status black blue
color indicator black blue
color normal black white
color error red white
color status white blue
color indicator white blue
color quoted yellow default
color header blue default "^(Subject)"
color header brightblue default "^(From)"
color index black red "~D" # deleted messages
color attachment green default
color header blue white "^(Subject)"
color header brightblue white "^(From)"
color index white red "~D" # deleted messages
color attachment green white
'';
macros = [
{

View file

@ -60,12 +60,12 @@ in
bars = [
{
colors = {
background = "#fbffff";
statusline = "#535c65";
activeWorkspace = { border = "#6d7782"; background = "#6d7782"; text = "#fbffff"; };
focusedWorkspace = { border = "#2b7ab2"; background = "#2b7ab2"; text = "#fbffff"; };
inactiveWorkspace = { border = "#fbffff"; background = "#fbffff"; text = "#535c65"; };
urgentWorkspace = { border = "#ae5865"; background = "#ae5865"; text = "#fbffff"; };
background = "#ffffff";
statusline = "#000000";
activeWorkspace = { border = "#f2eff3"; background = "#f2eff3"; text = "#000000"; };
focusedWorkspace = { border = "#6aaeff"; background = "#6aaeff"; text = "#000000"; };
inactiveWorkspace = { border = "#ffffff"; background = "#ffffff"; text = "#000000"; };
urgentWorkspace = { border = "#ff8892"; background = "#ff8892"; text = "#000000"; };
};
fonts = [ "Fira Code Normal 9" ];
position = "top";

View file

@ -22,16 +22,16 @@ pkgs.writeText "configuration.toml" ''
[theme]
name = "gruvbox-light"
[theme.overrides]
idle_bg="#fbffff"
idle_fg="#535c65"
info_bg="#2b7ab2"
info_fg="#fbffff"
good_bg="#4d7f43"
good_fg="#fbffff"
warning_bg="#906c33"
warning_fg="#fbffff"
critical_bg="#ae5865"
critical_fg="#fbffff"
idle_bg="#ffffff"
idle_fg="#000000"
info_bg="#6aaeff"
info_fg="#000000"
good_bg="#5ada88"
good_fg="#000000"
warning_bg="#f5df23"
warning_fg="#000000"
critical_bg="#ff8892"
critical_fg="#000000"
separator=""
[icons]