source ~/.cshrc ## Key Bindings bindkey -v bindkey ^R i-search-fwd bindkey ^F i-search-back ## From Stanford/Russ config; try them out! set autolist = ambiguous set listmax = 100 set nobeep set pushdsilent set pushdtohome set symlinks = ignore set pushdsilent set pushdtohome set symlinks=ignore ## This has to go here so that 'which' works as a command in csh. if ($?prompt) then ## Default editor should be vim if possible, otherwise vi if ( -x `which vim` ) then setenv EDITOR `which vim` else setenv EDITOR vi endif endif