From 3ff3086e901e16ac814462bcbff7398f0dee60fc Mon Sep 17 00:00:00 2001
From: Alfred Burgess <aburgess@ucc.asn.au>
Date: Fri, 31 May 2024 14:26:59 +1000
Subject: [PATCH] Changed system to use Alacritty

---
 alacritty/alacritty.toml         | 32 ++++++++++++++
 alacritty/catppuccin-frappe.toml | 75 ++++++++++++++++++++++++++++++++
 2 files changed, 107 insertions(+)
 create mode 100644 alacritty/alacritty.toml
 create mode 100644 alacritty/catppuccin-frappe.toml

diff --git a/alacritty/alacritty.toml b/alacritty/alacritty.toml
new file mode 100644
index 0000000..67f59c8
--- /dev/null
+++ b/alacritty/alacritty.toml
@@ -0,0 +1,32 @@
+import = [
+  "~/.config/alacritty/catppuccin-frappe.toml"
+]
+
+[shell]
+program="/bin/zsh"
+
+[window]
+padding = { x=5, y=5 }
+decorations="None"
+
+[env]
+TERM = "xterm-256color"
+
+[font]
+size = 10.0
+
+[font.bold]
+family="JetBrains Mono"
+style = "Bold"
+
+[font.bold_italic]
+family="JetBrains Mono"
+style = "Bold Italic"
+
+[font.italic]
+family="JetBrains Mono"
+style = "Italic"
+
+[font.normal]
+family="JetBrains Mono"
+style = "Regular"
diff --git a/alacritty/catppuccin-frappe.toml b/alacritty/catppuccin-frappe.toml
new file mode 100644
index 0000000..6ee39de
--- /dev/null
+++ b/alacritty/catppuccin-frappe.toml
@@ -0,0 +1,75 @@
+[colors.primary]
+background = "#303446"
+foreground = "#c6d0f5"
+dim_foreground = "#838ba7"
+bright_foreground = "#c6d0f5"
+
+[colors.cursor]
+text = "#303446"
+cursor = "#f2d5cf"
+
+[colors.vi_mode_cursor]
+text = "#303446"
+cursor = "#babbf1"
+
+[colors.search.matches]
+foreground = "#303446"
+background = "#a5adce"
+
+[colors.search.focused_match]
+foreground = "#303446"
+background = "#a6d189"
+
+[colors.footer_bar]
+foreground = "#303446"
+background = "#a5adce"
+
+[colors.hints.start]
+foreground = "#303446"
+background = "#e5c890"
+
+[colors.hints.end]
+foreground = "#303446"
+background = "#a5adce"
+
+[colors.selection]
+text = "#303446"
+background = "#f2d5cf"
+
+[colors.normal]
+black = "#51576d"
+red = "#e78284"
+green = "#a6d189"
+yellow = "#e5c890"
+blue = "#8caaee"
+magenta = "#f4b8e4"
+cyan = "#81c8be"
+white = "#b5bfe2"
+
+[colors.bright]
+black = "#626880"
+red = "#e78284"
+green = "#a6d189"
+yellow = "#e5c890"
+blue = "#8caaee"
+magenta = "#f4b8e4"
+cyan = "#81c8be"
+white = "#a5adce"
+
+[colors.dim]
+black = "#51576d"
+red = "#e78284"
+green = "#a6d189"
+yellow = "#e5c890"
+blue = "#8caaee"
+magenta = "#f4b8e4"
+cyan = "#81c8be"
+white = "#b5bfe2"
+
+[[colors.indexed_colors]]
+index = 16
+color = "#ef9f76"
+
+[[colors.indexed_colors]]
+index = 17
+color = "#f2d5cf"
\ No newline at end of file
-- 
GitLab