set -g DOTFILES_VERSION "1.1.9" function gitme if test (count $argv) -lt 2 echo "Usage: gitme " return 1 end git config --global user.name "$argv[1]" git config --global user.email "$argv[2]" echo "Git global user configured:" echo " name: $argv[1]" echo " email: $argv[2]" end