summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Gonzalez <roger@rogs.me>2024-01-08 09:02:36 -0300
committerRoger Gonzalez <roger@rogs.me>2024-01-08 09:02:36 -0300
commit30cbc42d15dfa77cc648b1a235324a6b7635d420 (patch)
treec32443c03ab12ec89ba0057e11db296692aad8ea
parentd28aa0a808d2eef01b681c20946b492ae7721f2d (diff)
Added alacritty.toml
-rw-r--r--.config/alacritty/alacritty.toml51
1 files changed, 51 insertions, 0 deletions
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