You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
oh-my-fish/plugins/omf/omf.fish

23 lines
432 B
Fish

# NAME
# omf - Oh My Fish helper
#
# DESCRIPTION
# Extend fish binary to support plugins and themes installation
#
function omf -d "Oh My Fish helper"
if test (count $argv) -gt 0
switch $argv[1]
case 'install'
omf.packages --install
case 'update'
omf.packages --update
case 'list' 'ls'
omf.packages --list
case '*'
omf.helper
end
else
omf.helper
end
end