alacritty

alacritty

https://git.tonybtw.com/alacritty.git git://git.tonybtw.com/alacritty.git
937 bytes raw
1
#+title: Alacritty Config
2
#+AUTHOR: Tony
3
4
* Introduction
5
This is my literately defined alacritty.toml readme using
6
my first emacs org mode file.
7
8
* Font
9
Here I will define my font to be JetBrains Mono
10
#+begin_src toml :tangle alacritty.toml
11
[font]
12
normal = { family = "JetBrainsMono Nerd Font Mono", style = "Regular" }
13
size = 20
14
#+end_src
15
16
* Colors
17
Using a TokyoNight theme, I note why I like it here.
18
19
#+BEGIN_SRC toml :tangle alacritty.toml
20
[colors.primary]
21
background = "#1a1b26"
22
foreground = "#c0caf5"
23
24
[colors.normal]
25
black   = "#15161e"
26
red     = "#f7768e"
27
green   = "#9ece6a"
28
yellow  = "#e0af68"
29
blue    = "#7aa2f7"
30
magenta = "#bb9af7"
31
cyan    = "#7dcfff"
32
white   = "#a9b1d6"
33
#+END_SRC
34
35
* Terminal Stuff
36
This is required to set the terminal to /bin/bash instead of /bin/zsh, and login automatically to bash.
37
#+begin_src toml :tangle alacritty.toml
38
[terminal]
39
40
[terminal.shell]
41
program = "/bin/bash"
42
args = ["--login"]
43
44
#+end_src