" =============================================================================
" WINDOWS
" This file should be in the Users's HOME directory
" 	Ex: C:\Users\<username>\_vimrc
"
" =============================================================================
" HISTORY:
" 2016.05.10	S.McNair
" 2017.01.09	S.McNair - Added line for font settings
"
" =============================================================================
" $VIM =C:\Program Files (x86)\Vim
" $VIMRUNTIME = C:\Program Files (x86)\Vim<version>\ (ie \VIM74
"
" You should load/source the $VIM/_vimrc FIRST then load your personal
" preferences. 
" If you load personal prefs first, the $VIM/_vimrc will over-write your
" settings
" =============================================================================
" To view what files are being loaded at start-up:
" :script names
"
" :version
" :echo expand('~')
" :echo $HOME
" :echo $VIM
" :echo $VIMRUNTIME
"
"The output from :version includes the paths of the system and user vimrc and gvimrc files. For example:
"   system vimrc file: "$VIM/vimrc"
"     user vimrc file: "$HOME/.vimrc"
"      user exrc file: "$HOME/.exrc"
"  system gvimrc file: "$VIM/gvimrc"
"    user gvimrc file: "$HOME/.gvimrc"
"
" =============================================================================
" Load global preferences
source $VIM/_vimrc

"Turn creation of backup files OFF!
set nobackup
"Set Font for Windows (20170109)
set guifont=Lucida_Console:h10

