# No arguments: `git status`
# With arguments: acts like `git`
vg() {
  if [[ $# -gt 0 ]]; then
    nvim "$@"
    git add "$@"
  else
    git status
  fi
}
