Skip to content

Instantly share code, notes, and snippets.

@kaniak274
Last active October 4, 2021 15:14
Show Gist options
  • Save kaniak274/b950f1070e17930802f8da72cefbd0d0 to your computer and use it in GitHub Desktop.
Save kaniak274/b950f1070e17930802f8da72cefbd0d0 to your computer and use it in GitHub Desktop.
.zshrc
plugins=(
colored-man-pages
docker
git
git-flow
npm
nvm
python
pip
pipenv
supervisor
virtualenv
vundle
)
export ZSH=~/.oh-my-zsh
source $ZSH/oh-my-zsh.sh
source ~/.git-prompt/zsh-git-prompt/zshrc.sh
export NVM_DIR=~/.nvm
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"
DISABLE_AUTO_TITLE="true"
DISABLE_LS_COLORS="true"
DISABLE_AUTO_UPDATE="true"
ZSH_THEME=""
PROMPT='%B%~%b$(git_prompt_info) %# '
export VIRTUAL_ENV_DISABLE_PROMPT=
alias senv='. env/bin/activate'
alias ls='ls -CF --color=none'
alias gbnp='git --no-pager branch'
alias n='nautilus .'
alias c='clear'
alias please='sudo'
alias rs='python manage.py runserver'
alias dco='docker-compose -f docker/development/docker-compose.yml'
alias cpclip='xclip -selection clipboard'
alias migrate='python manage.py migrate'
alias makemigrations='python manage.py makemigrations'
alias search='apt-cache search'
alias only-u='sudo apt-get install --only-upgrade'
alias postgres='sudo -i -u postgres'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment