summaryrefslogtreecommitdiff
path: root/home-config/alacritty
diff options
context:
space:
mode:
authorTyler Murphy <tylerm@tylerm.dev>2023-09-04 23:21:01 -0400
committerTyler Murphy <tylerm@tylerm.dev>2023-09-04 23:21:01 -0400
commitdb49f683129771d95828b01594c69431a717e8e8 (patch)
treed2cb1c0b865e4d81ce81f9a3176b8ad93a864950 /home-config/alacritty
downloaddotfiles-guix-db49f683129771d95828b01594c69431a717e8e8.tar.gz
dotfiles-guix-db49f683129771d95828b01594c69431a717e8e8.tar.bz2
dotfiles-guix-db49f683129771d95828b01594c69431a717e8e8.zip
guix
Diffstat (limited to 'home-config/alacritty')
-rw-r--r--home-config/alacritty/alacritty.yml31
-rw-r--r--home-config/alacritty/catppuccin-mocha.yml78
2 files changed, 109 insertions, 0 deletions
diff --git a/home-config/alacritty/alacritty.yml b/home-config/alacritty/alacritty.yml
new file mode 100644
index 0000000..37c52d4
--- /dev/null
+++ b/home-config/alacritty/alacritty.yml
@@ -0,0 +1,31 @@
+# Colorscheme
+import:
+- ~/.config/alacritty/catppuccin-mocha.yml
+
+# Window settings
+window:
+ opacity: .85
+ padding:
+ x: 5
+ y: 5
+
+# Set font
+font:
+ normal:
+ family: FiraCode Nerd Font Mono
+ style: Regular
+ bold:
+ style: Bold
+ italic:
+ style: Italic
+ bold_italic:
+ style: Bold Italic
+ size: 11
+ offset:
+ x: 0
+ y: 0
+
+colors:
+ primary:
+ background: '0x14171d'
+ foreground: '0xc7c6c3'
diff --git a/home-config/alacritty/catppuccin-mocha.yml b/home-config/alacritty/catppuccin-mocha.yml
new file mode 100644
index 0000000..74ea60c
--- /dev/null
+++ b/home-config/alacritty/catppuccin-mocha.yml
@@ -0,0 +1,78 @@
+colors:
+ primary:
+ background: "#1d1d2d" # base
+ foreground: "#CDD6F4" # text
+ # Bright and dim foreground colors
+ dim_foreground: "#CDD6F4" # text
+ bright_foreground: "#CDD6F4" # text
+
+ # Cursor colors
+ cursor:
+ text: "#1E1E2E" # base
+ cursor: "#F5E0DC" # rosewater
+ vi_mode_cursor:
+ text: "#1E1E2E" # base
+ cursor: "#B4BEFE" # lavender
+
+ # Search colors
+ search:
+ matches:
+ foreground: "#1E1E2E" # base
+ background: "#A6ADC8" # subtext0
+ focused_match:
+ foreground: "#1E1E2E" # base
+ background: "#A6E3A1" # green
+ footer_bar:
+ foreground: "#1E1E2E" # base
+ background: "#A6ADC8" # subtext0
+
+ # Keyboard regex hints
+ hints:
+ start:
+ foreground: "#1E1E2E" # base
+ background: "#F9E2AF" # yellow
+ end:
+ foreground: "#1E1E2E" # base
+ background: "#A6ADC8" # subtext0
+
+ # Selection colors
+ selection:
+ text: "#1E1E2E" # base
+ background: "#F5E0DC" # rosewater
+
+ # Normal colors
+ normal:
+ black: "#45475A" # surface1
+ red: "#F38BA8" # red
+ green: "#A6E3A1" # green
+ yellow: "#F9E2AF" # yellow
+ blue: "#89B4FA" # blue
+ magenta: "#F5C2E7" # pink
+ cyan: "#94E2D5" # teal
+ white: "#BAC2DE" # subtext1
+
+ # Bright colors
+ bright:
+ black: "#585B70" # surface2
+ red: "#F38BA8" # red
+ green: "#A6E3A1" # green
+ yellow: "#F9E2AF" # yellow
+ blue: "#89B4FA" # blue
+ magenta: "#F5C2E7" # pink
+ cyan: "#94E2D5" # teal
+ white: "#A6ADC8" # subtext0
+
+ # Dim colors
+ dim:
+ black: "#45475A" # surface1
+ red: "#F38BA8" # red
+ green: "#A6E3A1" # green
+ yellow: "#F9E2AF" # yellow
+ blue: "#89B4FA" # blue
+ magenta: "#F5C2E7" # pink
+ cyan: "#94E2D5" # teal
+ white: "#BAC2DE" # subtext1
+
+ indexed_colors:
+ - { index: 16, color: "#FAB387" }
+ - { index: 17, color: "#F5E0DC" }