]> Untitled Git - vimfiles.git/commitdiff
Windows specific settings
authorPhilippe Huerlimann <p@hurlimann.org>
Tue, 27 Sep 2016 10:11:17 +0000 (12:11 +0200)
committerPhilippe Huerlimann <p@hurlimann.org>
Tue, 27 Sep 2016 10:11:17 +0000 (12:11 +0200)
vimrc

diff --git a/vimrc b/vimrc
index 9460c9d4648562bb045b2716eb5481a56c339f72..821f96fb99193332de23468da3ac3c645733eca4 100644 (file)
--- 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