Skip to content

Added flexibility to get.vimfiles.sh #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Returned the scripts variables to their original values.
  • Loading branch information
Charles Calvert committed Oct 6, 2011
commit 2d91abe1ee43d0e5de0d681c7c393e65011dcfb7
6 changes: 3 additions & 3 deletions get.vimfiles.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
# curl https://raw.github.com/coderifous/dotfiles/master/get.vimfiles.sh | sh

# Put your github username on the next line
REPO_OWNER="ccalvert"
REPO_OWNER="coderifous"
# REPO_HOST will generally be "github.com", but may be changed to something else
# if you're using a different git hosting service or if you have configured
# an alias in ~/.ssh/config, e.g. because you're using multiple identities.
REPO_HOST="github-personal"
REPO_HOST="github.com"
# The next line should contain the name of the repository.
REPO_NAME="dotfiles-1"
REPO_NAME="dotfiles"
GIT_REPO_URL="git@$REPO_HOST:$REPO_OWNER/$REPO_NAME.git"

echo -e "\033[32mDownloading repository."
Expand Down