Skip to content

Instantly share code, notes, and snippets.

@euank
Last active April 30, 2021 08:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save euank/e4746fcf98a01d5ee750227001708e63 to your computer and use it in GitHub Desktop.
Save euank/e4746fcf98a01d5ee750227001708e63 to your computer and use it in GitHub Desktop.
# symlink /home/user/.config/alacritty/alacritty.yml -> /nix/store/b75cyp5z629ja9vjykqa43pbw9jy8bvx-home-manager-files/.config/alacritty/alacritty.yml
# contents
{"colors":{"normal":{"black":"#000000","blue":"#7aa6da","cyan":"#70c0ba","green":"#b9ca4a","magenta":"#c397d8","red":"#d54e53","white":"#eaeaea","yellow":"#e6c547"},"primary":{"background":"#000000","bright_foreground":"#ffffff","dim_foreground":"#9a9a9a","foreground":"#eaeaea"}},"env":{},"font":{"normal":{"family":"MesloLGS NF"}}}
programs.alacritty = {
enable = true;
settings = {
env = {
# TERM = "xterm-256color";
};
font = {
normal = {
family = "MesloLGS NF";
};
};
colors = {
primary = {
background= "#000000";
foreground= "#eaeaea";
dim_foreground= "#9a9a9a";
bright_foreground= "#ffffff";
};
normal = {
black= "#000000";
red= "#d54e53";
green= "#b9ca4a";
yellow= "#e6c547";
blue= "#7aa6da";
magenta= "#c397d8";
cyan= "#70c0ba";
white= "#eaeaea";
};
};
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment