alacritty

alacritty

https://git.tonybtw.com/alacritty.git git://git.tonybtw.com/alacritty.git

Initial commit.

Commit
2193e0b046ded66f36927e0885f2939afbe05fbc
Author
tonybanters <tonybanters@gmail.com>
Date
2026-01-26 08:26:42

Diff

diff --git a/alacritty.toml b/alacritty.toml
new file mode 100644
index 0000000..0c8ac79
--- /dev/null
+++ b/alacritty.toml
@@ -0,0 +1,37 @@
+[window]
+# opacity=0.9
+[window.padding]
+y = 6 
+x = 6  
+
+[font]
+# normal = { family = "JetBrainsMono Nerd Font Propo", style = "Regular" }
+normal = { family = "Iosevka Nerd Font Propo", style = "Regular" }
+# size = 20
+size = 14
+
+[colors.bright]
+black   = "#444b6a"
+blue    = "#7da6ff"
+cyan    = "#0db9d7"
+green   = "#b9f27c"
+magenta = "#bb9af7"
+red     = "#ff7a93"
+white   = "#acb0d0"
+yellow  = "#ff9e64"
+
+
+[colors.primary]
+background = "#1a1b26"
+foreground = "#c0caf5"
+
+[colors.normal]
+black   = "#15161e"
+red     = "#f7768e"
+green   = "#9ece6a"
+yellow  = "#e0af68"
+blue    = "#7aa2f7"
+magenta = "#bb9af7"
+cyan    = "#7dcfff"
+white   = "#a9b1d6"
+
diff --git a/readme.org b/readme.org
new file mode 100644
index 0000000..6921c5f
--- /dev/null
+++ b/readme.org
@@ -0,0 +1,44 @@
+#+title: Alacritty Config
+#+AUTHOR: Tony
+
+* Introduction
+This is my literately defined alacritty.toml readme using
+my first emacs org mode file.
+
+* Font
+Here I will define my font to be JetBrains Mono
+#+begin_src toml :tangle alacritty.toml
+[font]
+normal = { family = "JetBrainsMono Nerd Font Mono", style = "Regular" }
+size = 20
+#+end_src
+
+* Colors
+Using a TokyoNight theme, I note why I like it here.
+
+#+BEGIN_SRC toml :tangle alacritty.toml
+[colors.primary]
+background = "#1a1b26"
+foreground = "#c0caf5"
+
+[colors.normal]
+black   = "#15161e"
+red     = "#f7768e"
+green   = "#9ece6a"
+yellow  = "#e0af68"
+blue    = "#7aa2f7"
+magenta = "#bb9af7"
+cyan    = "#7dcfff"
+white   = "#a9b1d6"
+#+END_SRC
+
+* Terminal Stuff
+This is required to set the terminal to /bin/bash instead of /bin/zsh, and login automatically to bash.
+#+begin_src toml :tangle alacritty.toml
+[terminal]
+
+[terminal.shell]
+program = "/bin/bash"
+args = ["--login"]
+
+#+end_src