From d17ebde49b4af56cdee7caf25d458886f12d218a Mon Sep 17 00:00:00 2001 From: Ein Verne Date: Tue, 20 Oct 2015 11:18:08 +0800 Subject: [PATCH] add details to README file and add install ctag to install.sh --- README.md | 7 ++++--- install.sh | 3 +++ 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a992b79..c8e0bc4 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,10 @@ git checkout -t origin/master ## Instruction under Linux +Just run `./install.sh`, everything is done. Then Enter the vim run `:PluginInstall` to install all plugins. + +Or, you can do it manually follow the step: + Install Vundle to `~/.vim/` directory. git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim @@ -44,6 +48,3 @@ with yum: sudo yum install ctags-etags -Alternative way, using git submodule: - - git submodule init && git submodule update diff --git a/install.sh b/install.sh index 5339f76..8d08db8 100755 --- a/install.sh +++ b/install.sh @@ -19,3 +19,6 @@ if [ "$use_vim_configs" == "Y" ] || [ "$use_vim_configs" == "y" ]; then fi git submodule init && git submodule update + +# install ctags to solve "Exuberant ctags not found in PATH" error +sudo apt-get install exuberant-ctags