dotfiles/etc/configs/alacritty.nix
2005 27d55ea981 🔧 few moderate changes
more polybar capsules
readme: added showcase for alacritty and other stuff
added theme skin for element
alacritty shades of purple theme
user.js: tryed to limit firefox for 165hz but still runs at 60fps
added gimp
added nvim config, soon i'll be switching to it
2024-06-11 20:09:58 +02:00

42 lines
1.1 KiB
Nix

{ pkgs, ... }: {
home-manager.users.grape.programs.alacritty =
{
enable = true;
settings = {
font.normal = {
family = "Jetbrains Mono Nerd font";
style = "Regular";
};
colors = {
primary.background = "0x1E1E3F";
primary.foreground = "0xE1EFFF";
cursor.text = "0x1E1E3F";
cursor.cursor = "0xFAD000";
# Normal colors
normal.black = "0x000000";
normal.red = "0xEC3A37";
normal.green = "0x75e44c";
normal.yellow = "0xFAD000";
normal.blue = "0x6943FF";
normal.magenta = "0xFF2C70";
normal.cyan = "0x80FCFF";
normal.white = "0xFFFFFF";
# Bright colors
bright.black = "0x5C5C61";
bright.red = "0xEC3A37";
bright.green = "0x3AD900";
bright.yellow = "0xFAD000";
bright.blue = "0x6943FF";
bright.magenta = "0xFB94FF";
bright.cyan = "0x80FCFF";
bright.white = "0x2D2B55";
};
};
};
}