Skip to content

Commit

Permalink
Catppucin in alacritty
Browse files Browse the repository at this point in the history
  • Loading branch information
jevandezande committed Aug 8, 2024
1 parent de9e59d commit ae017b3
Show file tree
Hide file tree
Showing 4 changed files with 88 additions and 2 deletions.
7 changes: 7 additions & 0 deletions config/alacritty/alacritty.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
import = [
"~/.config/alacritty/catppuccin-mocha.toml"
]

[shell]
program = "/usr/bin/zsh"

[env]
TERM = "xterm-256color"

[font]
size = 14.0
75 changes: 75 additions & 0 deletions config/alacritty/catppuccin-mocha.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
[colors.primary]
background = "#1E1E2E"
foreground = "#CDD6F4"
dim_foreground = "#CDD6F4"
bright_foreground = "#CDD6F4"

[colors.cursor]
text = "#1E1E2E"
cursor = "#F5E0DC"

[colors.vi_mode_cursor]
text = "#1E1E2E"
cursor = "#B4BEFE"

[colors.search.matches]
foreground = "#1E1E2E"
background = "#A6ADC8"

[colors.search.focused_match]
foreground = "#1E1E2E"
background = "#A6E3A1"

[colors.footer_bar]
foreground = "#1E1E2E"
background = "#A6ADC8"

[colors.hints.start]
foreground = "#1E1E2E"
background = "#F9E2AF"

[colors.hints.end]
foreground = "#1E1E2E"
background = "#A6ADC8"

[colors.selection]
text = "#1E1E2E"
background = "#F5E0DC"

[colors.normal]
black = "#45475A"
red = "#F38BA8"
green = "#A6E3A1"
yellow = "#F9E2AF"
blue = "#89B4FA"
magenta = "#F5C2E7"
cyan = "#94E2D5"
white = "#BAC2DE"

[colors.bright]
black = "#585B70"
red = "#F38BA8"
green = "#A6E3A1"
yellow = "#F9E2AF"
blue = "#89B4FA"
magenta = "#F5C2E7"
cyan = "#94E2D5"
white = "#A6ADC8"

[colors.dim]
black = "#45475A"
red = "#F38BA8"
green = "#A6E3A1"
yellow = "#F9E2AF"
blue = "#89B4FA"
magenta = "#F5C2E7"
cyan = "#94E2D5"
white = "#BAC2DE"

[[colors.indexed_colors]]
index = 16
color = "#FAB387"

[[colors.indexed_colors]]
index = 17
color = "#F5E0DC"
6 changes: 5 additions & 1 deletion zsh/completions.zsh
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
eval "$(register-python-argcomplete chem_runner)"
eval "$(starship init zsh)"
eval "$(direnv hook zsh)"
eval "$(pixi completion --shell zsh)"

# Personal projects
eval "$(register-python-argcomplete chem_runner)"
2 changes: 1 addition & 1 deletion zsh/setup.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ source $HOME/.zsh/rust.zsh

source $HOME/.zsh/systems.zsh

eval "$(starship init zsh)"
source $HOME/.zsh/completions.zsh

0 comments on commit ae017b3

Please sign in to comment.