changeset 0:c78481cfb082

Initial checkin: * svn:ignore * . * Add files manually (from xanadu at work) to start the process
author huston@80426f53-59d1-405d-934b-f07cd76f4a1a
date Fri, 10 Apr 2009 17:51:18 +0000
parents
children 7e33b3191cf7
files .bash_aliases .bash_logout .bash_profile .bashrc .screenrc .vimrc
diffstat 6 files changed, 88 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/.bash_aliases	Fri Apr 10 17:51:18 2009 +0000
@@ -0,0 +1,12 @@
+alias vi='vim'
+alias r='ssh -l root'
+alias s=ssh
+alias j='ssh joshua.srhuston.net'
+alias rt='ssh -l root typesetter'
+alias rot13="tr 'a-zA-Z' 'n-za-mN-ZA-M'"
+alias roc='ssh zenoss@rocinante'
+alias ret='screen -raAx'
+alias bsr='bigscreen -raAx'
+
+alias dvra='ssh dvra@laurel.dreamhost.com'
+alias dh='ssh srhuston.net'
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/.bash_logout	Fri Apr 10 17:51:18 2009 +0000
@@ -0,0 +1,3 @@
+#if [ "$SSH_AGENT_PID" -a "$SHLVL" = "1" ] ; then
+#   eval `/usr/bin/ssh-agent -k`
+#fi
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/.bash_profile	Fri Apr 10 17:51:18 2009 +0000
@@ -0,0 +1,19 @@
+# .bash_profile
+
+# Get the aliases and functions
+if [ -f ~/.bashrc ]; then
+	. ~/.bashrc
+fi
+
+# User specific environment and startup programs
+
+PATH=$PATH:$HOME/bin
+BASH_ENV=$HOME/.bashrc
+EDITOR=vim
+
+export BASH_ENV PATH EDITOR
+unset USERNAME
+
+#if [ "X$SSH_AUTH_SOCK" = "X" ] ; then
+#   eval `/usr/bin/ssh-agent`
+#fi
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/.bashrc	Fri Apr 10 17:51:18 2009 +0000
@@ -0,0 +1,33 @@
+# .bashrc
+
+# User specific aliases and functions
+
+# Source global definitions
+if [ -f /etc/bashrc ]; then
+	. /etc/bashrc
+fi
+if [ -f $HOME/.bash_aliases ]; then
+   . $HOME/.bash_aliases
+fi
+
+export PS1='\h:\w\$ '
+#if [ "$SSH2_AUTH_SOCK" != "" -a "X$SSH_AUTH_SOCK" = "X" ] ; then
+#   export SSH_AUTH_SOCK=$SSH2_AUTH_SOCK
+#fi
+
+# Add local Perl crap
+[[ "$PERL5LIB" =~ "/home/huston/perl" ]] || export PERL5LIB=/home/huston/perl${PERL5LIB:+:$PERL5LIB}
+[[ "$MANPATH" =~ "/home/huston/perl/share/man" ]] || export MANPATH=~/perl/share/man:${MANPATH:+$MANPATH}
+[[ "$PATH" =~ "/home/huston/perl/bin" ]] || export PATH=~/perl/bin${PATH:+:$PATH}
+
+# Get the local install paths setup nicely
+for D in ~/Installs/* ; do
+	if [ -d $D/bin ]; then 
+	   [[ "$PATH" =~ "$D/bin" ]] || export PATH=$D/bin${PATH:+:$PATH} ; fi
+	if [ -d $D/share/man ]; then 
+	   [[ "$MANPATH" =~ "$D/share/man" ]] || export MANPATH=$D/share/man:${MANPATH:+$MANPATH} ; fi
+	if [ -d $D/man ]; then 
+	   [[ "$MANPATH" =~ "$D/man" ]] || export MANPATH=$D/man:${MANPATH:+$MANPATH} ; fi
+	if [ -d $D/lib ]; then 
+	   [[ "$LD_LIBRARY_PATH" =~ "$D/lib" ]] || export LD_LIBRARY_PATH=$D/lib${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH} ; fi
+done
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/.screenrc	Fri Apr 10 17:51:18 2009 +0000
@@ -0,0 +1,7 @@
+vbell off
+bell_msg "^GBell in window %n"
+defnonblock 5
+nethack on
+hardstatus string "%{.bW}%-Lw%{.rW}%50L>%n%f* %t%?%{.cW}(%u)%{-}%?%{-}%+Lw%L< %-20=%{..G} %H%-8= %{..Y} %c " 
+hardstatus alwayslastline
+activity "^GActivity in window %n"
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/.vimrc	Fri Apr 10 17:51:18 2009 +0000
@@ -0,0 +1,14 @@
+version 5.0
+set nocompatible
+set autoindent
+set cindent
+set mouse=a
+set smartindent
+set smarttab
+set tabstop=3
+syntax on
+set sw=3
+set bg=dark
+set textwidth=78
+set sm
+hi Normal guibg=black guifg=white