Created
April 9, 2022 20:57
-
-
Save altherlex/88dcc8646832daf168ed3777521a6ea7 to your computer and use it in GitHub Desktop.
My .zshrc customs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ---- 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