You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You may need to manually set your language environment
export LANG=en_US.UTF-8
Preferred editor for local and remote sessions
if [[ -n $SSH_CONNECTION ]]; then
export EDITOR='vim'
else
export EDITOR='mvim'
fi
Compilation flags
export ARCHFLAGS="-arch x86_64"
Set personal aliases, overriding those provided by oh-my-zsh libs,
plugins, and themes. Aliases can be placed here, though oh-my-zsh
users are encouraged to define aliases within the ZSH_CUSTOM folder.
For a full list of active aliases, run alias.
Example aliases
alias zshconfig="mate ~/.zshrc"
alias ohmyzsh="mate ~/.oh-my-zsh"
Ubuntu aliases.
alias supd="sudo apt-get update"
alias supg="sudo apt-get upgrade"
Directory aliases.
alias frmt="cd Desktop/Frumatic"
alias vtpf="cd Desktop/Frumatic/vtp-frontend"
alias vtpb="cd Desktop/Frumatic/vtp_backend"
alias lcal="cd Desktop/Local_Projects"
Git aliases.
alias gfod="git fetch origin dev"
alias gfom="git fetch origin main"
alias gpod="git pull origin dev"
alias gpom="git pull origin main"
alias gchp="git checkout -"
alias gchd="git checkout dev"
alias gchm="git checkout main"
alias gadd="git add ."
alias gcmt="git commit"
alias gpsh="git push"
IDE aliases.
alias vscd="code ."
alias wbst="open-ide webstorm"
Npm aliases.
alias npms="npm start"
alias npmi="npm install"
NX aliases.
alias nxst="nx run-many --all --target=serve"
Angular aliases.
alias ngst="ng serve --port 4200"
alias ngs1="ng serve --port 4201"
alias ngs2="ng serve --port 4202"