Skip to content

Commit

Permalink
fix: move g++ alias outside of if condition
Browse files Browse the repository at this point in the history
  • Loading branch information
xvzc committed Apr 11, 2024
1 parent 1ce6cf2 commit 7161ea8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dot_zsh/alias.zsh.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@ if [ -x "$(command -v eza)" ]; then
alias l="ls"
alias ls='eza --sort=type'
alias la='eza -alg --sort=type'
alias g++='g++ -std=c++17'
fi

alias g++='g++ -std=c++17'

# {{ if eq .osid "darwin" }}
alias ofd='open .'
# {{ else if eq .osid "linux-arch" }}
Expand Down

0 comments on commit 7161ea8

Please sign in to comment.