Skip to content

Instantly share code, notes, and snippets.

@altherlex
Created April 9, 2022 20:57
Show Gist options
  • Save altherlex/88dcc8646832daf168ed3777521a6ea7 to your computer and use it in GitHub Desktop.
Save altherlex/88dcc8646832daf168ed3777521a6ea7 to your computer and use it in GitHub Desktop.
My .zshrc customs
# ---- My personal env -----
export PATH="$HOME/.rbenv/bin:$PATH"
eval "$(rbenv init - zsh)"
# starts Mysql
[ $(mysql.server status|awk '{ print $1}') != 'SUCCESS!' ] && mysql.server start
alias s='subl'
alias ll='ls -lah'
export VOLTA_HOME="$HOME/.volta"
export PATH="$VOLTA_HOME/bin:$PATH"
export PATH="/usr/bin/python3:$PATH"
# Fix control+u
bindkey \^U backward-kill-line
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment