From a76bbde00cb8897795d03e7696772d6c4687746c Mon Sep 17 00:00:00 2001 From: Christian Nieves Date: Wed, 4 Dec 2024 13:59:56 -0600 Subject: [PATCH] alacritty is so dang snappy! --- alacritty/.alacritty.toml | 73 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 alacritty/.alacritty.toml diff --git a/alacritty/.alacritty.toml b/alacritty/.alacritty.toml new file mode 100644 index 0000000..d6fcfbf --- /dev/null +++ b/alacritty/.alacritty.toml @@ -0,0 +1,73 @@ +[font] +size = 12 +normal = { family = "ComicCodeLigatures Nerd Font Light" } + +[window] +option_as_alt = "OnlyLeft" +decorations = "None" + +[colors.primary] +background = "#24273a" +foreground = "#cad3f5" +dim_foreground = "#8087a2" +bright_foreground = "#cad3f5" + +[colors.cursor] +text = "#24273a" +cursor = "#f4dbd6" + +[colors.vi_mode_cursor] +text = "#24273a" +cursor = "#b7bdf8" + +[colors.search.matches] +foreground = "#24273a" +background = "#a5adcb" + +[colors.search.focused_match] +foreground = "#24273a" +background = "#a6da95" + +[colors.footer_bar] +foreground = "#24273a" +background = "#a5adcb" + +[colors.hints.start] +foreground = "#24273a" +background = "#eed49f" + +[colors.hints.end] +foreground = "#24273a" +background = "#a5adcb" + +[colors.selection] +text = "#24273a" +background = "#f4dbd6" + +[colors.normal] +black = "#494d64" +red = "#ed8796" +green = "#a6da95" +yellow = "#eed49f" +blue = "#8aadf4" +magenta = "#f5bde6" +cyan = "#8bd5ca" +white = "#b8c0e0" + +[colors.bright] +black = "#5b6078" +red = "#ed8796" +green = "#a6da95" +yellow = "#eed49f" +blue = "#8aadf4" +magenta = "#f5bde6" +cyan = "#8bd5ca" +white = "#a5adcb" + +[[colors.indexed_colors]] +index = 16 +color = "#f5a97f" + +[[colors.indexed_colors]] +index = 17 +color = "#f4dbd6"