mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
alacritty: configure fonts
This commit is contained in:
parent
2a9e86edd8
commit
9eb64a5b78
1 changed files with 22 additions and 0 deletions
|
@ -11,6 +11,28 @@ let
|
|||
configText = builtins.toJSON
|
||||
{
|
||||
env.TERM = "xterm-256color";
|
||||
font.size = 12;
|
||||
colors = {
|
||||
primary.background = "0x1e1e1e";
|
||||
primary.foreground = "0xdddddd";
|
||||
# Tango Dark
|
||||
normal.black = "0x2e3436";
|
||||
normal.red = "0xcc0000";
|
||||
normal.green = "0x4e9a06";
|
||||
normal.yellow = "0xc4a000";
|
||||
normal.blue = "0x3465a4";
|
||||
normal.magenta = "0x75507b";
|
||||
normal.cyan = "0x06989a";
|
||||
normal.white = "0xd3d7cf";
|
||||
bright.black = "0x555753";
|
||||
bright.red = "0xef2929";
|
||||
bright.green = "0x8ae234";
|
||||
bright.yellow = "0xfce94f";
|
||||
bright.blue = "0x729fcf";
|
||||
bright.magenta = "0xad7fa8";
|
||||
bright.cyan = "0x34e2e2";
|
||||
bright.white = "0xeeeeec";
|
||||
};
|
||||
key_bindings = [
|
||||
{ action = "ScrollHalfPageDown"; mods = "Shift"; key = "PageDown"; }
|
||||
{ action = "ScrollHalfPageUp"; mods = "Shift"; key = "PageUp"; }
|
||||
|
|
Loading…
Reference in a new issue