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