diff options
author | Matthew Lemon <y@yulqen.org> | 2024-02-28 05:39:35 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-02-28 05:39:35 +0000 |
commit | 146e0ef23bb8a54298c0e028ea6a2ca90f74958b (patch) | |
tree | 11269851741e65a6d7848257fc2f0bb4967672f2 | |
parent | c70fc51278d7ef3265a21e9a14fd4589bf762dcc (diff) |
Adds new toml config file for latest version of alacritty - build with rust
-rw-r--r-- | alacritty.toml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/alacritty.toml b/alacritty.toml new file mode 100644 index 0000000..0cb58fc --- /dev/null +++ b/alacritty.toml @@ -0,0 +1,19 @@ +import = [ + # "~/.config/alacritty/themes/themes/base16_default_dark.toml" + "~/.config/alacritty/themes/themes/ayu_dark.toml" +] + +[font] +size = 10 + +[font.normal] +family = "monospace" +style = "Regular" + +[font.bold] +family = "monospace" +style = "Bold" + +[font.italic] +family = "monospace" +style = "Italic" |