From 062c5344e63b684925dc87417b4e96d5f786efe7 Mon Sep 17 00:00:00 2001 From: Andrew Conlin Date: Thu, 9 May 2024 18:33:45 +0100 Subject: [PATCH] [2024-05-09] Migrate Alacritty config to TOML --- alacritty.toml | 18 ++++++++++++++++++ alacritty.yml | 15 --------------- 2 files changed, 18 insertions(+), 15 deletions(-) create mode 100644 alacritty.toml delete mode 100644 alacritty.yml diff --git a/alacritty.toml b/alacritty.toml new file mode 100644 index 0000000..f8b7760 --- /dev/null +++ b/alacritty.toml @@ -0,0 +1,18 @@ +import = ["/home/andrew/.config/alacritty/themes/tokyonight.toml"] + +[cursor.style] +blinking = "On" +shape = "Beam" + +[cursor.vi_mode_style] +shape = "Block" + +[font] +size = 9.0 + +[font.normal] +family = "Geist Mono" +style = "Regular" + +[window] +opacity = 0.8 diff --git a/alacritty.yml b/alacritty.yml deleted file mode 100644 index 127e80e..0000000 --- a/alacritty.yml +++ /dev/null @@ -1,15 +0,0 @@ -font: - normal: - family: Geist Mono - style: Regular - size: 9.0 - -cursor: - style: - shape: "Beam" - blinking: "On" - vi_mode_style: - shape: "Block" - -import: - - ~/.config/alacritty/themes/tokyo-night.yml