From 6921b6b1871f5cbf54cec5a260f672a9368d940c Mon Sep 17 00:00:00 2001 From: Rikuoh Date: Sun, 25 Feb 2024 09:29:11 +0900 Subject: [PATCH] toml --- .alacritty.toml | 71 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 .alacritty.toml diff --git a/.alacritty.toml b/.alacritty.toml new file mode 100644 index 0000000..0cb7724 --- /dev/null +++ b/.alacritty.toml @@ -0,0 +1,71 @@ +[colors.bright] +black = "0x5b5858" +blue = "0x3fc4de" +cyan = "0x6be4e6" +green = "0x3fdaa4" +magenta = "0xf075b5" +red = "0xec6a88" +white = "0xd5d8da" +yellow = "0xfbc3a7" + +[colors.cursor] +cursor = "0x00ff00" + +[colors.normal] +black = "0x16161c" +blue = "0x26bbd9" +cyan = "0x59e1e3" +green = "0x29d398" +magenta = "0xee64ac" +red = "0xe95678" +white = "0xd5d8da" +yellow = "0xfab795" + +[colors.primary] +background = "0x1c1e26" +foreground = "0xe0e0e0" + +[colors.vi_mode_cursor] +cursor = "0x00ff00" + +[cursor] +blink_interval = 470 +unfocused_hollow = false + +[cursor.style] +blinking = "Always" +shape = "Underline" + +[env] +TERM = "xterm-256color" + +[font] +size = 13 + +[font.bold] +family = "UDEV Gothic 35NFLG" +style = "Bold" + +[font.bold_italic] +family = "UDEV Gothic 35NFLG" +style = "Bold Italic" + +[font.italic] +family = "UDEV Gothic 35NFLG" +style = "Italic" + +[font.normal] +family = "UDEV Gothic 35NFLG" +style = "Regular" + +[shell] +args = ["--login"] +program = "/usr/bin/zsh" + +[window] +dynamic_padding = false +opacity = 0.95 + +[window.padding] +x = 0 +y = 0