This is my literately defined alacritty.toml readme using my first emacs org mode file.
Here I will define my font to be JetBrains Mono
[font]
normal = { family = "JetBrainsMono Nerd Font Mono", style = "Regular" }
size = 20Using a TokyoNight theme, I note why I like it here.
[colors.primary]
background = "#1a1b26"
foreground = "#c0caf5"
[colors.normal]
black = "#15161e"
red = "#f7768e"
green = "#9ece6a"
yellow = "#e0af68"
blue = "#7aa2f7"
magenta = "#bb9af7"
cyan = "#7dcfff"
white = "#a9b1d6"This is required to set the terminal to /bin/bash instead of /bin/zsh, and login automatically to bash.
[terminal]
[terminal.shell]
program = "/bin/bash"
args = ["--login"]