Skip to content

Commit

Permalink
feat: make alacritty conf multi OS
Browse files Browse the repository at this point in the history
  • Loading branch information
gwarf committed Jan 25, 2025
1 parent 7d0c388 commit 00cc3a3
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,13 @@ size = 15.0

[terminal]
[terminal.shell]
{{ if eq .chezmoi.os "darwin" -}}
program = "/opt/homebrew/bin/fish"
{{ else if eq .chezmoi.os "freebsd" -}}
program = "/usr/local/bin/fish"
{{ else -}}
program = "fish"
{{ end -}}
args = ["--interactive", "--login"]

[window]
Expand Down

0 comments on commit 00cc3a3

Please sign in to comment.