From 2360e84aeac7f85bd8ad47dedd5b4ccfb8905713 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miros=C5=82aw=20Prag=C5=82owski?= Date: Fri, 9 May 2014 21:12:52 +0200 Subject: [PATCH] moved my custom settings to separate file --- my_configs.vim | 6 ++++++ vimrcs/basic.vim | 7 ------- 2 files changed, 6 insertions(+), 7 deletions(-) create mode 100644 my_configs.vim diff --git a/my_configs.vim b/my_configs.vim new file mode 100644 index 00000000..3a6d057b --- /dev/null +++ b/my_configs.vim @@ -0,0 +1,6 @@ +""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +" => my custom settings +""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +set number " line numbers +set nocompatible " choose no compatibility with legacy vi +set nowrap " don't wrap lines diff --git a/vimrcs/basic.vim b/vimrcs/basic.vim index b0e1fcba..1d01bbce 100644 --- a/vimrcs/basic.vim +++ b/vimrcs/basic.vim @@ -411,10 +411,3 @@ function! BufcloseCloseIt() execute("bdelete! ".l:currentBufNum) endif endfunction - -""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" -" => custom settings -""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" -set number -set nocompatible " choose no compatibility with legacy vi -set nowrap " don't wrap lines