mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 05:12:56 +00:00
14 lines
257 B
Fish
14 lines
257 B
Fish
#!/usr/bin/local/fish
|
|
|
|
function projects --description "Projects tools"
|
|
|
|
set PROJ $HOME/dev/work
|
|
alias proj='cd $PROJ'
|
|
|
|
function prj --description "cd to a project"
|
|
set projdir (ls $PROJ | fzf)
|
|
and cd $PROJ/$projdir
|
|
end
|
|
|
|
end
|