---------------------------------------------------------------------
ENVIRONMENT VARIABLES:
$VIM : Add the windows SYSTEM variable VIM (all caps) and 
set the value to  = C:\Program Files\vim

$VIMRUNTIME = $VIM\vim<version>

The environment variable "$VIMRUNTIME" is used to locate various support
files, such as the on-line documentation and files used for syntax
highlighting.  For example, the main help file is normally
"$VIMRUNTIME/doc/help.txt".
You don't normally set $VIMRUNTIME yourself, but let Vim figure it out.  This
is the order used to find the value of $VIMRUNTIME:
1. If the environment variable $VIMRUNTIME is set, it is used.  You can use
   this when the runtime files are in an unusual location.
2. If "$VIM/vim{version}" exists, it is used.  {version} is the version
   number of Vim, without any '-' or '.'.  For example: "$VIM/vim54".  This is
   the normal value for $VIMRUNTIME.
3. If "$VIM/runtime" exists, it is used.
4. The value of $VIM is used.  This is for backwards compatibility with older
   versions.
5. When the 'helpfile' option is set and doesn't contain a '$', its value is
   used, with "doc/help.txt" removed from the end.
---------------------------------------------------------------------
CONFIGURATION FILES:
1. Copy the following files to the $VIMRUNTIME directory
	vimrc_example.vim
	mswin.vim

---------------------------------------------------------------------
PROBLEM:CTL-M (^M)
SOLUTION: 

:%s/<ctl-q><ctl-m>/\r/g 

WHERE: 
<ctl-q> = Press Crtl and Q keys at the same time 
<clt-m> = Press Crtl and M keys at the same time 

Explained: 
CTL-V is mapped to the Windows PASTE function, so, you can't invoke [ESC]escape sequence [CTL-V] like you do in UNIX. 
In WINDOWS, the [ESC] is actived by CTL-Q. 

The above command will change all the UNIX style <CR><LF> to the Windows normal behavior. 
---------------------------------------------------------------------
PROBLEM:Start vim with maximized window at startup
sticking the following in your vimrc will always maximize your vim window on startup. 

au GUIEnter * simalt ~x 


:he win16-maximized 
---------------------------------------------------------------------

FILETYPES:
To associate syntax/colors/etc, see the filetype.vim

COLORS
http://www.devdaily.com/linux/vi-vim-editor-color-scheme-syntax

Colors are stored in the syntax files 
for SQL see sqloracle.vim

The files types are associated tih

Turn Colors Off/On
:syn on 
:syn off

:source $VIMRUNTIME/syntax/syntax.vim

To refresh/reload the color scheme
:colorscheme default

To set a color for a keyword (in the color scheme)
hi sqlKeyword  guifg=Red
hi Identifier   ctermfg=darkgreen cterm=none guifg=#cd5c5c guibg=Blue


See modified files:

.vimfiles/syntax/tsql.vim
.vimfiles/filtype.vim

---------------------------------------------------------------------
