These are my dotfiles: ~/.*
When you clone thes dotfiles locally they will need to be cloned into you home folder
git clone git@github.com:IoraHealth/dotfiles.git ~/.dotfiles
Alternatively you can clone someplace else and just create a symbolioc link to the repository.
To interactively link the dotfiles into ~
, run:
thor link:dotfiles
Want to get up and running in no time? Run
# Following line: If you are using rvm, switch to system ruby so that MacVim will compile
rvm use system
gem install thor --no-ri --no-rdoc
thor new
Watch your log very carefully. If you see instructions about /usr/bin/xcode-select
try
sudo /usr/bin/xcode-select -switch /Applications/Xcode.app/Contents/Developer
And re-run thor new
.
NOTE: thor new
runs the following in order
thor new:zsh
thor install:all
thor link:dotfiles
thor link:rvm
To see all of the tasks, run:
thor list
After you have linked the files you will want to run BundleInstall from vim. Open up vim and type
:BundleInstall
##Troubleshooting
If your .vimrc does not appear to be loading and/or you are getting error messages about Bundle/Vundle or Pathogen try:
mv ~/.vim ~/.vim.bak.1
ln -s ~/.dotfiles/vim ~/.vim
(assuming you cloned into~/.dotfiles
)
Then try :BundleInstall
Thanks to @gabebw whose dotfiles repo this is based off of.