diff --git a/.gitignore b/.gitignore index 2e8db7341..666bfb0aa 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,6 @@ locals.zsh log/.zsh_history projects.zsh -custom/* !custom/example !custom/example.zsh cache diff --git a/custom/plugins/shukyf/shukyf.plugin.zsh b/custom/plugins/shukyf/shukyf.plugin.zsh new file mode 100644 index 000000000..7f3dc9a59 --- /dev/null +++ b/custom/plugins/shukyf/shukyf.plugin.zsh @@ -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 \ No newline at end of file