ninjabiscuit / dotfiles

@ninjabiscuit does dotfiles

Home Page:http://zachholman.com/2010/08/dotfiles-are-meant-to-be-forked/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

my dotfiles

install

Install Homebrew:

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

Install Git

brew install git

Switch to ZSH

sudo echo "$(which zsh)" >> /etc/shells
chsh -s $(which zsh)

Clone the dotfiles:

git clone --recurse-submodules -j8 https://github.com/ninjabiscuit/dotfiles.git ~/.dotfiles
cd ~/.dotfiles
./script/bootstrap
./bin/dot

This will symlink the appropriate files in .dotfiles to your home directory. Everything is configured and tweaked within ~/.dotfiles.

The main file you'll want to change right off the bat is zsh/zshrc.symlink, which sets up a few paths that'll be different on your particular machine.

NVIM

Check that plug installed successfully .dotfiles/script/bootstrap. Install plugins with :PlugInstall in vim

dot is a simple script that installs some dependencies, sets sane OS X defaults, and so on. Tweak this script, and occasionally run dot from time to time to keep your environment fresh and up-to-date. You can find this script in bin/.

Based on Holman's dotfiles

About

@ninjabiscuit does dotfiles

http://zachholman.com/2010/08/dotfiles-are-meant-to-be-forked/

License:MIT License


Languages

Language:Shell 59.1%Language:Ruby 34.1%Language:Vim Script 5.2%Language:Python 1.7%