Fix some Windows compatibility issues

master
Dustin C. Hatch 2011-12-20 20:16:11 -06:00
parent c5876975d7
commit 5e58c9fb22
1 changed files with 13 additions and 2 deletions

View File

@ -18,8 +18,6 @@ if has('gui_running')
colorscheme wombat
endif
" Nice font and size (escape spaces) (GUI only)
set guifont=Luxi\ Mono\ 10
" Set GUI size for side-by-side editing
autocmd GUIEnter * set lines=60 columns=169
@ -27,3 +25,16 @@ autocmd GUIEnter * set lines=60 columns=169
inoremap jj <esc><right>
" Shift+Tab to un-indent
inoremap <S-TAB> <C-D>
" Platform specific stuff
if has('win32')
" Windows has a different font naming pattern
" Also, Consolas is more widely available than Luxi
set guifont=Consolas:h9:cANSI
" The default directory setting uses C:\tmp and C:\temp, neither of which
" are valid on Windows 6.0 and later
set directory=.,$TEMP,
elseif has('unix')
" Nice font and size (escape spaces) (GUI only)
set guifont=Luxi\ Mono\ 10
endif