if [ $TERM="xterm-256color" ] then PS1='\[\033[01;38;5;61m\]\u@\h\[\033[01;38;5;107m\] \w\n\$\[\033[01;38;5;248m\]' fi
LS_OPTIONS='--color' export LS_OPTIONS
aliasls="ls $LS_OPTIONS" alias l="ls -lh" alias ll="ls -l" alias la='ls -alh' alias c7='chmod 777' alias c5='chmod 755' alias c4='chmod 644' alias c0='chmod 700' alias c0f='chmod 600' alias dh='du -h' alias eb='vi ~/.bashrc' alias ep='vi ~/.bash_profile' alias sb='source ~/.bashrc ' alias h='head' alias k9='kill -9' alias les="less -RS" alias le='les' aliasln='ln -s' alias wl="wc -l" alias a="cd .. && l" alias b='cd - && l' alias pp="pu $USER" alias i='dirs -c && pushd .' alias o='dirs -c' alias p='pushd' alias rd="rm -rf" alias t="tail" alias vi="/usr/bin/vim" alias py="python"
"~/.vimrc set nocompatible "Use Vim settings, rather then Vi settings (much better!). syntax on "show syntax set nu "show line number set tabstop=4 "<tab> width filetype plugin indent on set autoindent "set automatic indent set smartindent cinwords=if,elif,else,for,while,try,except,finally,def,class set softtabstop=4 set expandtab set ruler set shiftwidth=4 "autoindent width set cindent "C style indent set sm "show matched bracket set smarttab set fileformats=unix set backspace=indent,eol,start set incsearch set fencs=utf-8,ucs-bom,euc-jp,gb18030,gbk,gb2312,cp936 "set coding
set t_Co=256 "Use 256 color colorscheme lucius "set ColorScheme set viminfo='1000,<800 "return the position last edit au BufReadPost * if line("'\"") > 0|if line("'\"") <= line("$")|exe("norm '\"")|else|exe "norm $"|endif|endif set hlsearch