added support for specific dotfiles

This commit is contained in:
2013-02-21 11:46:38 -07:00
parent 754d1691fd
commit ef0affaf80
3 changed files with 25 additions and 0 deletions

4
dotfiles/ackrc Normal file
View File

@@ -0,0 +1,4 @@
#--all
--ignore-case
--with-filename
--type-set=coffeescript=.coffee

12
dotfiles/screenrc Normal file
View File

@@ -0,0 +1,12 @@
# don't display the copyright page
startup_message off
# visable bell
vbell_msg "beep"
# hardstatus
caption string "%?%F%{= Bk}%? %C%A %D %d-%m-%Y %{= kB} %t%= %?%F%{= Bk}%:%{= wk}%? %n "
hardstatus alwayslastline
hardstatus string '%{= kG}[ %{G}%H %{g}][%= %{= kw}%?%-Lw%?%{r}(%{W}%n*%f%t%?(%u)%?%{r})%{w}%?%+Lw%?%?%= %{g}][%{B} %d/%m %{W}%c %{g}]'
# From Stephen Shirley
# Don't block command output if the terminal stops responding
# (like if the ssh connection times out for example).
nonblock on

View File

@@ -47,6 +47,15 @@ if [ ! -f "${HOME}"/.bashrc ]; then
ln -s "${HOME}"/.bash_profile "${HOME}"/.bashrc ln -s "${HOME}"/.bash_profile "${HOME}"/.bashrc
fi fi
###
# dotfiles
###
cd dotfiles
for i in *; do
cp "${i}" "${HOME}/.${i}"
done
cd "${ROOT}"
### ###
# git # git
### ###