Updated vimrc and bashrc.

This commit is contained in:
Nicole Tietz-Sokolskaya 2011-06-27 20:00:15 -04:00
parent 66b854cba2
commit 4b91d7b67a
2 changed files with 19 additions and 0 deletions

15
profile
View file

@ -23,5 +23,20 @@ set_prompt() {
PS1="${TITLEBAR}$BLUE[\t]\`$FAILURE_COLOR\` \u@\h> $NO_COLOR"
}
#sets the PS1 prompt
set_prompt
# makes ls print pretty
alias ls="ls --color=auto"
# something with keyword completion
. /etc/bash_completion
# default editor
export EDITOR=vim
# set history
export HISTSIZE=1000
export HISTFILESIZE=1000
export HISTCONTROL=ignoredups

4
vimrc
View file

@ -10,6 +10,10 @@ set winminwidth=20
set winwidth=100
set winheight=20
" Syntax highlighting
syntax on
" Wrapping settings
set nowrap " nowrap makes the lines not wrap
" set wrap " wrap makes the lines wrap
set linebreak