Native 64-bit builds of Vim define win64.  Check for that in addition to
win32 when determining if we are on Windows.
 se nocp
 
 " Find stuff.
-if has("win32")
+if has("win32") || has("win64")
   se rtp=~/.vim,$VIMRUNTIME
 endif
 
 se hlsearch
 
 " Set graphical window title.
-if has("win32")
+if has("win32") || has("win64")
   " Windows taskbar entries are probably too small to show full titles.
   se titlestring=%t
 else
 if version >= "600" "{{{1
 version 6.0
 
-if has("win32")
+if has("gui_win32")
   se encoding=utf-8
 endif
 
 
 " Set colours.
 if has("gui_running")
-  if has("win32")
+  if has("win32") || has("win64")
     exe "silent se guifont=DejaVu_Sans_Mono:h10:cANSI"
   else
     exe "silent se guifont=DejaVu\\ Sans\\ Mono\\ 10"