From e8fc7d125e10ab65b84c7a15ae937266b9c671d1 Mon Sep 17 00:00:00 2001 From: vx-clutch Date: Fri, 10 Oct 2025 18:37:04 -0400 Subject: [PATCH] save --- alacritty/.config/alacritty/alacritty.toml | 50 ++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 alacritty/.config/alacritty/alacritty.toml diff --git a/alacritty/.config/alacritty/alacritty.toml b/alacritty/.config/alacritty/alacritty.toml new file mode 100644 index 0000000..9eeb21a --- /dev/null +++ b/alacritty/.config/alacritty/alacritty.toml @@ -0,0 +1,50 @@ +[colors.primary] +background = "#181818" +foreground = "#e4e4e4" + +[colors.normal] +black = "#101010" +red = "#f43841" +green = "#73d936" +yellow = "#ffdd33" +blue = "#96a6c8" +magenta = "#9e95c7" +cyan = "#95a99f" +white = "#f5f5f5" + +[colors.bright] +black = "#282828" +red = "#ff4f58" +green = "#73d936" +yellow = "#ffdd33" +blue = "#96a6c8" +magenta = "#9e95c7" +cyan = "#95a99f" +white = "#ffffff" + +[colors.cursor] +text = "#000000" +cursor = "#f4f4ff" + +[colors.selection] +text = "#ffffff" +background = "#484848" + +[env] +TERM = "xterm-256color" + +[font] +normal = { family = "ComicShanns Nerd Font", style = "Regular" } +bold = { family = "ComicShanns Nerd Font", style = "Bold" } +italic = { family = "ComicShanns Nerd Font", style = "Italic" } +size = 9 + +[window] +padding.x = 14 +padding.y = 14 +decorations = "None" + +[keyboard] +bindings = [ +{ key = "F11", action = "ToggleFullscreen" } +]