From: Philippe Huerlimann Date: Tue, 27 Sep 2016 10:11:17 +0000 (+0200) Subject: Windows specific settings X-Git-Url: https://git.hurlimann.org/sitemap.xml?a=commitdiff_plain;h=84105688c9fb0d0cfde1a52015a5035637c88e75;p=vimfiles.git Windows specific settings --- diff --git a/vimrc b/vimrc index 9460c9d..821f96f 100644 --- a/vimrc +++ b/vimrc @@ -52,7 +52,11 @@ let g:Powerline_symbols = 'unicode' " Delimate settings " expand newline and spaces -let delimitMate_expand_cr = 1 +if has("win32") + let delimitMate_expand_cr = 0 +else + let delimitMate_expand_cr = 1 +endif let delimitMate_expand_space = 1 " set lines horizontal and vertical line for the cursor @@ -90,6 +94,8 @@ set tabstop=4 set shiftwidth=4 set softtabstop=4 +set nobackup + " gui options if has('gui_running') set guioptions=aAceif