I went and made it so that the dotfiles I care about could exist outside of the home directory.
To install on a new machine:
- Install homebrew
brew update
brew install zsh zsh-completions
brew install antigen
- Clone this directory into
~/Documents/
- Add any environment variables to a
.env
file in the cloned directory. - Add the line below to your
.zshrc
source "${HOME}/documents/dotfiles/.index"
source ~/.zshrc
brew install vim
mkdir -p ~/Documents/dotfiles/.vim/bundle
mkdir ~/Documents/dotfiles/.vim/colors
git clone [email protected]:altercation/vim-colors-solarized.git
mv vim-colors-solarized/colors/solarized.vim ~/.vim/colors
rm -rf vim-colors-solarized
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
- Open vim and run
:PluginInstall
- Open iTerm preferences -> Profiles -> Colors -> Color Presets -> Import...
- Select GruvboxHardDark.itermcolors from ~/Documents/dotfiles/iterm_colors
- Import, then select the new option from the same dropdown.
- Still in the iTerm preferences, select Profile -> Terminal and check Unlimited scrollback.
I think that should be it? Pull Requests accepted? Maybe? Kind of? Yes to fix things. Probably not to make changes. Fork and make your own.