adding cutom plugin

This commit is contained in:
Shuky Dvir 2012-02-20 14:30:50 +02:00
commit 602729755e
2 changed files with 12 additions and 1 deletions

1
.gitignore vendored
View file

@ -1,7 +1,6 @@
locals.zsh
log/.zsh_history
projects.zsh
custom/*
!custom/example
!custom/example.zsh
cache

View file

@ -0,0 +1,12 @@
c() { cd ~/code/$1; }
_c() { _files -W ~/code -/; }
compdef _c c
b() { cd ~/code/biokm/$1; }
_b() { _files -W ~/code/biokm -/; }
compdef _b b