Skip to content

Commit

Permalink
Update l alias. Added server alias for composer server:...
Browse files Browse the repository at this point in the history
  • Loading branch information
derpaschi committed Mar 13, 2024
1 parent 5ff3f42 commit 47b1c27
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion zsh/aliases.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,17 @@ alias cls='clear' # Good 'ol Clear Screen command
alias ssh="assh wrapper ssh --" # assh wrapper
alias ..='cd ..'
alias composer="ssh -T [email protected] > /dev/null 2>&1 ; ssh -T [email protected] > /dev/null 2>&1 ; `brew --prefix`/bin/composer"
alias l='exa --long --header --git'
alias l='ls -la'
alias start='composer server:start'
alias stop='composer server:stop'
alias stopremove='composer server:stop --remove --skip-proxy'
alias mysqladmin='/opt/homebrew/opt/mysql/bin/mysqladmin'

# Alias `server <command>` to `composer server:<command>`.
server() {
composer server:$@
}

#alias pygmy='pygmy-go'

mockup() {
Expand Down

0 comments on commit 47b1c27

Please sign in to comment.