Skip to content

Instantly share code, notes, and snippets.

@airtonzanon
Last active February 7, 2024 10:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save airtonzanon/73628b78920caa17ada5b0d30cb0e031 to your computer and use it in GitHub Desktop.
Save airtonzanon/73628b78920caa17ada5b0d30cb0e031 to your computer and use it in GitHub Desktop.
my zsh file
export ZSH="/Users/airtonzanon/.oh-my-zsh"
ZSH_THEME="robbyrussell"
plugins=(git zsh-autosuggestions)
source $ZSH/oh-my-zsh.sh
alias vim="nvim"
alias projects="cd ~/Documents/projects"
alias gst='git status'
alias goh='git fetch --prune && git rebase origin/master'
alias gaas="git add . && git commit --amend --no-edit && git push origin HEAD --force-with-lease"
export PROMPT='%n@%m%k %B%F{cyan}%(4~|...|)%3~%F{white} %# %b%f%k $(git_prompt_info)%{$fg_bold[blue]%} ❯ %{$reset_color%}'
tt() {
curl -X POST -H "Content-Type: application/json" \
-d "{\"value1\":\"$1\",\"value2\":\"$2\",\"value3\":\"$3\"}" \
https://maker.ifttt.com/trigger/create_trello_card/with/key/{{ifttt_key}}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment