Skip to content

Instantly share code, notes, and snippets.

View zaccharieramzi's full-sized avatar
🛠️
undecimated

Zaccharie Ramzi zaccharieramzi

🛠️
undecimated
View GitHub Profile

Keybase proof

I hereby claim:

  • I am zaccharieramzi on github.
  • I am zaccharier (https://keybase.io/zaccharier) on keybase.
  • I have a public key ASA1fJLnO3sHlc2TnS3ia8uBuCOupkv16ahYFYrDGljJfwo

To claim this, I am signing this object:

@zaccharieramzi
zaccharieramzi / cdvenv.sh
Created November 27, 2017 10:17
A little convenience `cd` to automatically activate the virtual environment of the directory you are `cd`-ing into. Works on ZSH with auto-completion.
# convenience cd
function cdvenv(){
cd $1;
source venv/bin/activate;
}
compdef _dirs cdvenv