Currently using (would be nice to integrate)
- https://github.com/zsh-git-prompt/zsh-git-prompt
- rbenv
- Vundle/pathogen
Your dotfiles are how you personalize your system. These are mine. This dotfiles are designed to work with:
- Fedora 14 | Debian stable | ubuntu stable.
- zsh
- Rails >=5.
- git
- vim
If you match up along most of those lines, you could fork my dotfiles try them and work with me (or us) making this better.
@Holman: I was a little tired of having long alias files and everything strewn about (which is extremely common on other dotfiles projects, too). That led to this project being much more topic-centric. I realized I could split a lot of things up into the main areas I used (Ruby, git, system libraries, and so on), so I structured the project accordingly. If you're interested in the philosophy behind why projects like these are awesome, you might want to read my post on the subject.
@Holman: Everything's built around topic areas. If you're adding a new area to
your forked dotfiles — say, "Java" — you can simply add a java directory and
put files in there. Anything with an extension of .zsh will get automatically
included into your shell. Anything with an extension of .symlink will get
symlinked without extension into $HOME when you run rake install.
- make a simple backup of
~/.* git clone git://github.com/lmhsjackson/dotfiles ~/.dotfilescd ~/.dotfilesrake install- Modify
zsh/zshrc.symlinkas you like. - Select zsh as your shell.
- Restart.
The install rake task will symlink the appropriate files in .dotfiles to your
home directory. Everything is configured and tweaked within ~/.dotfiles,
though.
A lot of what's inside is just aliases: gs for git status, gl for git pull --rebase --prune, for example. You can browse the aliases.zsh files in
each topic directory. There's also a collection of scripts in bin you can
browse. A few notable ones:
###rails
spings your system for any running Rails apps, anddeathsswill then kill all of them indiscriminately.ssstarts up a new Rails server on the next available port- if 3000 is taken, it'll spin up your server on 3001.
###system
cis an autocomplete shortcut to your projects directory. For example,c gitand then hitting tab will autocomplete togithub, and then it simply changes to mygithubdirectory.check [filename]is a quick script that tells you whether a domain is available to register.smartextract [filename]will extract about a billion different compressed/uncompressed/whatever files and you'll never have to remember the syntax.backupis a quick hook intorsyncto backup a selection of files. Check out the comments for more details.
###fun
cloudappuploads any file to CloudApp.gifmeis a command-line animated GIF generator. It's also amazing.
##moar custom There are a few things I use to make my life awesome. They're not a required dependency, but if you make it happen, THEY'LL MAKE YOU HAPPEN.
- If you want some more colors for things like
ls, install grc:brew install grc. - If you install the excellent rvm to manage multiple rubies, your current branch will show up in the prompt. Bonus.
I forked @Holman organiced dotfiles in 2011 and I like them, and I liked zsh too. Holman forked Ryan Bates' dotfiles for a couple years before the weight of my changes and tweaks inspired me to finally roll my own. But Ryan's dotfiles were an easy way to get into bash customization, and then to jump ship to zsh a bit later. A decent amount of the code in these dotfiles stem or are inspired from Ryan's original project.