From 84105688c9fb0d0cfde1a52015a5035637c88e75 Mon Sep 17 00:00:00 2001 From: Philippe Huerlimann
Date: Tue, 27 Sep 2016 12:11:17 +0200 Subject: [PATCH] Windows specific settings --- vimrc | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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 -- 2.51.2