From bf7e99cadae4e75a5d8415b15ae8abc94d99c497 Mon Sep 17 00:00:00 2001 From: Jonas Brunsgaard Date: Thu, 10 Jul 2014 11:05:54 +0200 Subject: [PATCH 1/4] Add "set shell=/bin/bash" to boilerplate vimrc Due to the issue #175, Is there a reason not to put in the boilerplate vimrc? --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index b8a7fdbc..878d0292 100644 --- a/README.md +++ b/README.md @@ -48,6 +48,7 @@ " set the runtime path to include Vundle and initialize set rtp+=~/.vim/bundle/Vundle.vim + set shell=/bin/bash call vundle#begin() " alternatively, pass a path where Vundle should install plugins "call vundle#begin('~/some/path/here') From ba353303f08756d8c6dd012f35f92e47f98bc8f1 Mon Sep 17 00:00:00 2001 From: Jonas Brunsgaard Date: Thu, 10 Jul 2014 11:10:23 +0200 Subject: [PATCH 2/4] Update README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 878d0292..270a7957 100644 --- a/README.md +++ b/README.md @@ -45,10 +45,12 @@ ```vim set nocompatible " be iMproved, required filetype off " required + + " avoid problems for users of other shells than bash. + set shell=/bin/bash " set the runtime path to include Vundle and initialize set rtp+=~/.vim/bundle/Vundle.vim - set shell=/bin/bash call vundle#begin() " alternatively, pass a path where Vundle should install plugins "call vundle#begin('~/some/path/here') From 76a677339d1642fe66b8b6ad93a0a1f01cb2c918 Mon Sep 17 00:00:00 2001 From: Jonas Brunsgaard Date: Thu, 17 Jul 2014 10:45:52 +0200 Subject: [PATCH 3/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 270a7957..9fcf4649 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ filetype off " required " avoid problems for users of other shells than bash. - set shell=/bin/bash + set shell=/bin/sh " set the runtime path to include Vundle and initialize set rtp+=~/.vim/bundle/Vundle.vim From b075f15ec1eb501ba959ca5737e6ac95d876c87b Mon Sep 17 00:00:00 2001 From: Jonas Brunsgaard Date: Thu, 17 Jul 2014 10:47:00 +0200 Subject: [PATCH 4/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9fcf4649..87837ffb 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ set nocompatible " be iMproved, required filetype off " required - " avoid problems for users of other shells than bash. + " Avoid problems for non-POSIX shell users. set shell=/bin/sh " set the runtime path to include Vundle and initialize