Skip to content

Commit

Permalink
feat: add alacritty
Browse files Browse the repository at this point in the history
  • Loading branch information
iuiaoin committed Jun 18, 2024
1 parent 3ad795b commit 82e04d1
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 0 deletions.
1 change: 1 addition & 0 deletions Brewfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ brew "zsh"
brew "six"
brew "thefuck"
cask "hyper"
cask "alacritty"
cask "miniconda"
cask "google-chrome"
cask "kap"
Expand Down
51 changes: 51 additions & 0 deletions _alacritty/.alacritty.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# Configuration for Alacritty, the GPU-accelerated terminal emulator.
# Refer to https://alacritty.org/config-alacritty.html

[font]
size = 15.0

[colors]
draw_bold_text_with_bright_colors = true

[colors.primary]
background = "#282a36"
foreground = "#eff0eb"

[colors.cursor]
cursor = "#97979b"

[colors.selection]
text = "#282a36"
background = "#feffff"

[colors.normal]
black = "#282a36"
red = "#ff5c57"
green = "#5af78e"
yellow = "#f3f99d"
blue = "#57c7ff"
magenta = "#ff6ac1"
cyan = "#9aedfe"
white = "#f1f1f0"

[colors.bright]
black = "#686868"
red = "#ff5c57"
green = "#5af78e"
yellow = "#f3f99d"
blue = "#57c7ff"
magenta = "#ff6ac1"
cyan = "#9aedfe"
white = "#eff0eb"

[window.padding]
x = 14
y = 12

[shell]
program = "/bin/zsh"
args = ["--login"]

[window]
decorations = "Transparent"
startup_mode = "Windowed"
1 change: 1 addition & 0 deletions _install/macos.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,7 @@ zshrc() {

cat $HOME/dotfiles/_zshrc/macos.zshrc > $HOME/.zshrc
cat $HOME/dotfiles/_hyper/.hyper.js > $HOME/.hyper.js
cat $HOME/dotfiles/_alacritty/.alacritty.toml > $HOME/.alacritty.toml
}

finish() {
Expand Down

0 comments on commit 82e04d1

Please sign in to comment.