initial configs

This commit is contained in:
James Walker 2011-02-27 16:28:22 -05:00
commit d94ab5b5a5
9 changed files with 100 additions and 0 deletions

11
gitconfig Normal file
View File

@ -0,0 +1,11 @@
[user]
name = James Walker
email = walkah@walkah.net
[color]
diff = auto
status = auto
branch = auto
ui = auto
[alias]
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
st = status -s

15
install.rb Executable file
View File

@ -0,0 +1,15 @@
#!/usr/bin/env ruby
# from http://errtheblog.com/posts/89-huba-huba
home = File.expand_path('~')
Dir['*'].each do |file|
next if file =~ /install/ || file =~ /README/
target = File.join(home, ".#{file}")
unless File.exist? target
`ln -vsf #{File.expand_path file} #{target}`
else
puts "#{target} exists"
end
end

19
screenrc Normal file
View File

@ -0,0 +1,19 @@
# walkah's screenrc
#
# $Id: .screenrc,v 1.8 2007-03-30 02:31:27 walkah Exp $
# no startup message
startup_message off
deflogin on
# i like the caption at the bottom, so i know what screen i'm on
caption always "%w %-= %m/%d/%y %C%a"
# i use ctrl-a waay too much in emacs/readline remap to ctrl-o
escape ^Oo
# put hardstatus in the window title
hardstatus off
hardstatus string "%h [%n]"
termcapinfo xterm*|ansi 'hs:ts=\E]2;:fs=\007:ds=\E]2;screen\007'

3
ssh/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
environment
id_dsa
known_hosts

1
ssh/authorized_keys Normal file
View File

@ -0,0 +1 @@
ssh-dss AAAAB3NzaC1kc3MAAAEBALy0MrqtcYwlfx5Z1zfCriZFC/cj/2k++mmqzOCYU+bxD23k36qQ6a734vM6WtX8cCcx/5MoA4ffWA8Has7Z4jh5f3HQ4exEi3dOjW2yuKPPX6vs5DTyTdGvMlb+ouJVxiB+DGuN+MkJnTNCxvyK4hRaigfmFpiDjJs15r3IGol58BmQBvsYLaGfNaJeq5CzQVyVuXSFbzwU4VyQtuKSKbniPE8KnirYaa2WgOuIA5CKNhj0hyKMz3WCbSFqPS218FWKe878Mks4hSV1XGYKrMmI7/5Pk+qMvXqSjgZ8P6HJHuaw/8jIDeR95mzFOUggyh+ah6GW4nwsPvh/X9BdHKkAAAAVAL+7OROhd3C4yQsal1LqbWiN2MbrAAABACfPBzZJ6g3znxF3zrYIzL3Xg49nhBK417Rlu0SFhlx6FEXIaLU18mWRAQ8Rx3I4xmEl3Ob1AxosaRuBne8saeCIDxVNGhnEeST0VAocMCLoD2abQCHBaY3MyWh4SnQvvR9H4zLrEktQj5+bz14TOk3gbm97Y2QbujUgrv5taxrpgg7PMnRc/wdKbgKMBfZfuwCsBtFeCekWpAHZsPyPHOmsHPNmjqikw0nN9tvgWEI1cvAB6iOg1ImMXGf8AvtsPuTsWtNU9CyqIxirjab+2RoNzYg9bksgf0Go+52DPCQj4q2SsioCvR8x+YXT7E/7rWGpHBZfYz16rwtV3PCf8cIAAAEAIeMwd46FabZeQeIieMhY2pO6xMovm2fJQ8Vs2kqk2tUmt4S0jKUszbogvy6Qxo5Jh9fMyQug+BEEArjci9Sv8MdcGZCh8KIwETel8I8wTYLU35xls0X9kd6BIfW6vYDyvwJ4+HAbXGLXWUL3uQVPwpFbom2Qsvj+Zne3hpoJCuxeI+Qv3fjMaYpRjYyqKI1S2HouaDR46Ib7syJZxe8AqR52U//rprBp82QS7lwYu312ykN7z4JI0NcuDjO2U2NWQ7wgpKwFzhE8XXMK0lbH+572BOeu8kyRrr8tmaaRNC3FmLhvNyohRaCp2R07eQbQ7sKRNt+JniC8J/xxdATUHA== walkah

2
ssh/config Normal file
View File

@ -0,0 +1,2 @@
GatewayPorts yes
HashKnownHosts no

1
ssh/id_dsa.pub Normal file
View File

@ -0,0 +1 @@
ssh-dss AAAAB3NzaC1kc3MAAAEBALy0MrqtcYwlfx5Z1zfCriZFC/cj/2k++mmqzOCYU+bxD23k36qQ6a734vM6WtX8cCcx/5MoA4ffWA8Has7Z4jh5f3HQ4exEi3dOjW2yuKPPX6vs5DTyTdGvMlb+ouJVxiB+DGuN+MkJnTNCxvyK4hRaigfmFpiDjJs15r3IGol58BmQBvsYLaGfNaJeq5CzQVyVuXSFbzwU4VyQtuKSKbniPE8KnirYaa2WgOuIA5CKNhj0hyKMz3WCbSFqPS218FWKe878Mks4hSV1XGYKrMmI7/5Pk+qMvXqSjgZ8P6HJHuaw/8jIDeR95mzFOUggyh+ah6GW4nwsPvh/X9BdHKkAAAAVAL+7OROhd3C4yQsal1LqbWiN2MbrAAABACfPBzZJ6g3znxF3zrYIzL3Xg49nhBK417Rlu0SFhlx6FEXIaLU18mWRAQ8Rx3I4xmEl3Ob1AxosaRuBne8saeCIDxVNGhnEeST0VAocMCLoD2abQCHBaY3MyWh4SnQvvR9H4zLrEktQj5+bz14TOk3gbm97Y2QbujUgrv5taxrpgg7PMnRc/wdKbgKMBfZfuwCsBtFeCekWpAHZsPyPHOmsHPNmjqikw0nN9tvgWEI1cvAB6iOg1ImMXGf8AvtsPuTsWtNU9CyqIxirjab+2RoNzYg9bksgf0Go+52DPCQj4q2SsioCvR8x+YXT7E/7rWGpHBZfYz16rwtV3PCf8cIAAAEAIeMwd46FabZeQeIieMhY2pO6xMovm2fJQ8Vs2kqk2tUmt4S0jKUszbogvy6Qxo5Jh9fMyQug+BEEArjci9Sv8MdcGZCh8KIwETel8I8wTYLU35xls0X9kd6BIfW6vYDyvwJ4+HAbXGLXWUL3uQVPwpFbom2Qsvj+Zne3hpoJCuxeI+Qv3fjMaYpRjYyqKI1S2HouaDR46Ib7syJZxe8AqR52U//rprBp82QS7lwYu312ykN7z4JI0NcuDjO2U2NWQ7wgpKwFzhE8XXMK0lbH+572BOeu8kyRrr8tmaaRNC3FmLhvNyohRaCp2R07eQbQ7sKRNt+JniC8J/xxdATUHA== walkah

15
zshenv Normal file
View File

@ -0,0 +1,15 @@
# ignore system zsh
IGNORE_SYSTEM_ZSH=1
# unique path... and put my stuff first
typeset -U path
path=(~/bin ~/local/bin ~/local/sbin /usr/local/bin /usr/local/sbin /usr/bin /usr/X11R6/bin /bin /usr/sbin /sbin /usr/games)
### environment
export PAGER=less
export RSYNC_RSH=ssh
export CVS_RSH=ssh
#export CVSROOT=/home/cvs
[ -f $HOME/.environment ] && . $HOME/.environment

33
zshrc Normal file
View File

@ -0,0 +1,33 @@
# Path to your oh-my-zsh configuration.
export ZSH=$HOME/.oh-my-zsh
# Set to the name theme to load.
# Look in ~/.oh-my-zsh/themes/
export ZSH_THEME="walkah"
# Set to this to use case-sensitive completion
# export CASE_SENSITIVE="true"
# Comment this out to disable weekly auto-update checks
# export DISABLE_AUTO_UPDATE="true"
# Uncomment following line if you want to disable colors in ls
# export DISABLE_LS_COLORS="true"
# Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
# Example format: plugins=(rails git textmate ruby lighthouse)
plugins=(git svn ruby rails3 pip osx ssh-agent)
source $ZSH/oh-my-zsh.sh
# Ruby / rvm
if [ -f "$HOME/.rvm/scripts/rvm" ]; then
source "$HOME/.rvm/scripts/rvm"
rvm 1.8.7
fi
# Python/ virtualenv
if [ -f /usr/local/bin/virtualenvwrapper.sh ]; then
export WORKON_HOME=$HOME/.virtualenvs
source /usr/local/bin/virtualenvwrapper.sh
fi