40 lines
694 B
VimL
40 lines
694 B
VimL
"ADAM David Alan Martin's updated vimrc
|
|
"source ~/.vim/default.vim
|
|
|
|
source ~/.vim/vimrc.disablejunk
|
|
|
|
syntax on
|
|
|
|
"The adam color scheme has both syntax colors and adam colorscheme now.
|
|
"This fixes the longstanding xterm-256color issues I've had.
|
|
"let light_mode_env=$CSHENV_LIGHT_MODE
|
|
colors adam
|
|
|
|
let light_mode_env=$CSHENV_LIGHT_MODE
|
|
if light_mode_env == '1'
|
|
colors adam-light
|
|
endif
|
|
|
|
|
|
|
|
source ~/.vim/vimrc.globalprefs
|
|
|
|
source ~/.vim/vimrc.defkeymaps
|
|
|
|
|
|
source ~/.vim/vimrc.keymaps
|
|
|
|
source ~/.vim/vimrc.functions
|
|
|
|
source ~/.vim/vimrc.fileprefs
|
|
source ~/.vim/vimrc.statusline
|
|
|
|
if exists('$CSHENV_TOUCHSCREEN')
|
|
source ~/.vim/vimrc.mousescroll
|
|
endif
|
|
|
|
set noet
|
|
|
|
set shell=/bin/tcsh
|
|
"set t_Co=1
|