From 0d9845d6d1bc6b719e167003aad01aaefaf1f3f9 Mon Sep 17 00:00:00 2001 From: Wolf Date: Sat, 10 May 2014 21:19:22 +0200 Subject: [PATCH 1/3] Update .vimrc disabled "My Bundles" for my use --- .vimrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vimrc b/.vimrc index 7944eca..7f7b6ac 100644 --- a/.vimrc +++ b/.vimrc @@ -20,7 +20,7 @@ call vundle#rc() Bundle 'gmarik/vundle' " My Bundles -Bundle 'Valloric/YouCompleteMe' +"Bundle 'Valloric/YouCompleteMe' " Recognize file types / set indent mode filetype plugin indent on From ed6e9738c65c3db7a94ffa6d31038d82f6e6b894 Mon Sep 17 00:00:00 2001 From: Wolf Date: Sat, 10 May 2014 21:35:57 +0200 Subject: [PATCH 2/3] Update Readme.md adding install instructions --- Readme.md | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/Readme.md b/Readme.md index b375abe..1b23ba8 100644 --- a/Readme.md +++ b/Readme.md @@ -1,3 +1,34 @@ # vimrc Just a fork from the great dotfiles repository by Felix Geisendörfer (https://github.com/felixge/dotfiles) with some changings + +### Howto Install + +##### 1. get vimrc-package (via [eri451](https://github.com/eri451/)) in $place +``` +cd $place +git clone https://github.com/vv01f/vimrc.git +``` +##### 2. create symlinks for each users to be subject to this config +``` +cd ~ +ln -s $place/.vim ~/.vim +ln -s $place/.vimrc ~/.vimrc +``` +##### 3. get [Vundle](https://github.com/gmarik/Vundle.vim) (via [gmarik])(https://github.com/gmarik/) to ~/.vim/bundle/ +``` +cd ~/.vim/bundle +git clone https://github.com/gmarik/Vundle.vim.git +``` +##### 4. (optionally) en-/disable "MyBundles" + +option is to be found around line 23 in ~/.vimrc + +##### 5. install Bundles +``` +vim +BundleInstall +``` +##### 6. start vim the 1st time with the new config +``` +vim +``` From 1ce5cd7fb5c6362e3495df61771edb59c594e96d Mon Sep 17 00:00:00 2001 From: Wolf Date: Sun, 11 May 2014 17:08:21 +0200 Subject: [PATCH 3/3] Update Readme.md typo --- Readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Readme.md b/Readme.md index 1b23ba8..0e09517 100644 --- a/Readme.md +++ b/Readme.md @@ -15,7 +15,7 @@ cd ~ ln -s $place/.vim ~/.vim ln -s $place/.vimrc ~/.vimrc ``` -##### 3. get [Vundle](https://github.com/gmarik/Vundle.vim) (via [gmarik])(https://github.com/gmarik/) to ~/.vim/bundle/ +##### 3. get [Vundle](https://github.com/gmarik/Vundle.vim) (via [gmarik](https://github.com/gmarik/)) to ~/.vim/bundle/ ``` cd ~/.vim/bundle git clone https://github.com/gmarik/Vundle.vim.git