Merge branch 'master' of github.com:ntietz/config

This commit is contained in:
Nicole Tietz-Sokolskaya 2011-11-21 21:32:53 -05:00
commit 5f555b667a
3 changed files with 26 additions and 4 deletions

7
bashrc
View File

@ -1,2 +1,9 @@
source ~/.profile source ~/.profile
# something with keyword completion
# . /etc/bash_completion
if [ -f /etc/bash_completion ]
then
. /etc/bash_completion
fi

15
config.sh Executable file
View File

@ -0,0 +1,15 @@
#!/bin/bash
cd ~
rm -f .profile
rm -f .bashrc
ln -s ~/Repositories/config/profile .profile
ln -s ~/Repositories/config/bashrc .bashrc
rm -f .screenrf
ln -s ~/Repositories/config/screenrc .screenrc
rm -f .vimrc
ln -s ~/Repositories/config/vimrc .vimrc

View File

@ -31,9 +31,6 @@ set_prompt
# makes ls print pretty # makes ls print pretty
alias ls="ls --color=auto" alias ls="ls --color=auto"
# something with keyword completion
# . /etc/bash_completion
# default editor # default editor
export EDITOR=vim export EDITOR=vim
@ -42,3 +39,6 @@ export HISTSIZE=1000
export HISTFILESIZE=1000 export HISTFILESIZE=1000
export HISTCONTROL=ignoredups export HISTCONTROL=ignoredups
# disable messaging
mesg n