mirror of
https://github.com/alrayyes/dotfiles/
synced 2023-11-14 15:56:30 +00:00
17 lines
469 B
Bash
17 lines
469 B
Bash
#!/usr/bin/env fish
|
|
|
|
function install_omf_package_if_not_exist
|
|
if test (omf list | grep -c "$argv") -eq 0
|
|
echo "Installing omf package $argv"
|
|
omf install "$argv"
|
|
end
|
|
end
|
|
|
|
# Install oh-my-fish plugins
|
|
install_omf_package_if_not_exist colored-man-pages
|
|
install_omf_package_if_not_exist extract
|
|
install_omf_package_if_not_exist fzf
|
|
install_omf_package_if_not_exist gi
|
|
install_omf_package_if_not_exist git-flow
|
|
install_omf_package_if_not_exist wttr
|