Skip to content

Commit

Permalink
README
Browse files Browse the repository at this point in the history
  • Loading branch information
ekampf committed Jul 10, 2015
1 parent a14d415 commit c0b9d06
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 5 deletions.
53 changes: 50 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,51 @@
dotfiles
========
# ekampf does dotfiles

@ekampf's dotfiles
## dotfiles

@ekampf's dotfiles
Your dotfiles are how you personalize your system. These are mine.


## Install

Clone the repo (Or fork it...):
git clone git://github.com/ekampf/dotfiles.git

Install required gems:
bundle install

Run the bootstrap script:
./bootstrap.rb

#### Personalize

Put your customizations in dotfiles appended with `.local`:

* `~/.aliases.local`
* `~/.gitconfig.local`
* `~/.tmux.conf.local`
* `~/.vimrc.local`
* `~/.zshenv.local`
* `~/.zshrc.local`

For example, your `~/.aliases.local` might look like this:

# Productivity
alias todo='$EDITOR ~/.todo'

# Easy Folder access
alias go='cd $HOME/Documents/workspace'

And so on...


#### Whats in it?

<TODO>

tmux configuration:

* Improve color resolution.
* Remove administrative debris (session name, hostname, time) in status bar.
* Set prefix to `Ctrl+s`
* Soften status bar color from harsh green to light gray.
3 changes: 3 additions & 0 deletions dotfiles/aliases
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ alias ack='ack-grep'
alias diff='colordiff -u'
alias h='history'

# Reloads ZSH
alias reload='. ~/.zshrc'

# Editors
alias ed="$EDITOR"
alias ved="$VISUAL"
Expand Down
5 changes: 3 additions & 2 deletions dotfiles/gitconfig.erb
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# Sample gitconfig
#

[hub]
protocol = https
[user]
name = <%= Ask.input "Your Github Author Name", default: default_name %>
email = <%= Ask.input "Your Github Author Email", default: default_email %>
Expand Down Expand Up @@ -36,3 +34,6 @@
#
# Setting to git 2.0 default to suppress warning message
default = simple

[include]
path = ~/.gitconfig.local

0 comments on commit c0b9d06

Please sign in to comment.