From 30cbc42d15dfa77cc648b1a235324a6b7635d420 Mon Sep 17 00:00:00 2001 From: Roger Gonzalez Date: Mon, 8 Jan 2024 09:02:36 -0300 Subject: Added alacritty.toml --- .config/alacritty/alacritty.toml | 51 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 .config/alacritty/alacritty.toml diff --git a/.config/alacritty/alacritty.toml b/.config/alacritty/alacritty.toml new file mode 100644 index 00000000..695217d9 --- /dev/null +++ b/.config/alacritty/alacritty.toml @@ -0,0 +1,51 @@ +[colors.bright] +black = "0x434758" +blue = "0x9cc4ff" +cyan = "0xa3f7ff" +green = "0xddffa7" +magenta = "0xe1acff" +red = "0xff8b92" +white = "0xffffff" +yellow = "0xffe585" + +[colors.normal] +black = "0x282a36" +blue = "0x82aaff" +cyan = "0x89ddff" +green = "0xc3e88d" +magenta = "0xc792ea" +red = "0xf07178" +white = "0xd0d0d0" +yellow = "0xffcb6b" + +[colors.primary] +background = "0x000000" + +[colors.selection] +background = "0xffffff" +text = "0x000000" + +[env] +TERM = "xterm-256color" + +[font] +size = 11.0 + +[font.normal] +family = "MesloLGS NF" + +[scrolling] +history = 5000 +multiplier = 3 + +[window] +opacity = 0.75 +title = "Alacritty" + +[window.class] +general = "Alacritty" +instance = "Alacritty" + +[window.padding] +x = 6 +y = 6 -- cgit v1.2.3