These are my personal dotfiles. They setup an environment the way I like it.
Run these commands
git clone git://github.com/nweathersbee/dotfiles ~/.dotfiles
cd ~/.dotfiles
gem install bundler
bundle
bundle exec rake install
Now, add this to your ~/.bash_profile
or ~/.bashrc
or whatever:
# source in dotfiles
if [ -f ~/.bash_dotfiles.sh ]; then
. ~/.bash_dotfiles.sh
fi
I am running on Mac OS X, bash.
- aliases
- fancy ps1 with pwd, ruby**, and git info
- configs for git, gem, irb, pry, rb**, etc...
- git completion
- gem completion**
- rake completion
- cap completion (TODO)
** requires install of ruby-build and rb
These dotfiles will never tamper with your main settings files (~/.bash_profile
or ~/.bashrc
or whatever). If you want additional settings that need to be secure, private, or specific to one system, add or source them in your settings file as you would normally. These dotfiles are just sourced alongside them.
I modify these at will without notice so things might get broken. Use accordingly and don't blame me when stuff breaks. It's probably best to fork this and install using your fork.
Feel free to submit any pull requests suggesting cool new settings or things I may not be aware of. Please don't submit anything to the issues tracker - I most likely will ignore it.
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request