Skip to content

Commit

Permalink
Rough brush to make it work better on Ubuntu.
Browse files Browse the repository at this point in the history
  • Loading branch information
mbleigh committed Jul 2, 2012
1 parent abcc8fd commit a5bd60f
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 98 deletions.
14 changes: 4 additions & 10 deletions README.markdown
Original file line number Diff line number Diff line change
@@ -1,16 +1,10 @@
# holman does dotfiles
# mbleigh does dotfiles

## dotfiles

Your dotfiles are how you personalize your system. These are mine. The very
prejudiced mix: OS X, zsh, Ruby, Rails, git, homebrew, rbenv, vim. If you
match up along most of those lines, you may dig my dotfiles.

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.
These are my heavily specific dotfiles based almost entirely on [holman's](https://github.com/holman/dotfiles).
The major modifications have been to remove OS X specific code and generally
make it more Linux (specifically, Ubuntu) friendly.

If you're interested in the philosophy behind why projects like these are
awesome, you might want to [read my post on the
Expand Down
63 changes: 0 additions & 63 deletions mailplane/stylesheet.css

This file was deleted.

2 changes: 0 additions & 2 deletions osx/gcc.zsh

This file was deleted.

20 changes: 0 additions & 20 deletions osx/set-defaults.sh

This file was deleted.

17 changes: 16 additions & 1 deletion system/grc.zsh
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# GRC colorizes nifty unix tools all over the place
if $(grc &>/dev/null)
then
source `brew --prefix`/etc/grc.bashrc
GRC=`which grc`
if [ "$TERM" != dumb ] && [ -n GRC ]
then
alias colourify="$GRC -es --colour=auto"
alias configure='colourify ./configure'
alias diff='colourify diff'
alias make='colourify make'
alias gcc='colourify gcc'
alias g++='colourify g++'
alias as='colourify as'
alias gas='colourify gas'
alias ld='colourify ld'
alias netstat='colourify netstat'
alias ping='colourify ping'
alias traceroute='colourify /usr/sbin/traceroute'
fi
fi
2 changes: 1 addition & 1 deletion system/path.zsh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export PATH="./bin:$HOME/.rbenv/shims:/usr/local/bin:/usr/local/sbin:$HOME/.sfs:$ZSH/bin:$PATH"
export PATH="$HOME/bin:./bin:$HOME/.rbenv/shims:/usr/local/bin:/usr/local/sbin:$HOME/.sfs:$ZSH/bin:$PATH"

export MANPATH="/usr/local/man:/usr/local/mysql/man:/usr/local/git/man:$MANPATH"
2 changes: 1 addition & 1 deletion zsh/zshrc.symlink
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
export ZSH=$HOME/.dotfiles

# your project folder that we can `c [tab]` to
export PROJECTS=~/Development
export PROJECTS=~/Code

# source every .zsh file in this rep
for config_file ($ZSH/**/*.zsh) source $config_file
Expand Down

0 comments on commit a5bd60f

Please sign in to comment.