Calmcode - zsh: zshrc

Zshrc

1 2 3 4 5 6 7

The ~/.zshrc file is great when you want to customise. These two functions might be nice additions if you're a python developer.

function mkvirtualenv() {
  python3.7 -m venv venv
  source venv/bin/activate
}

function pysrc() {
  source venv/bin/activate
}