Browse Source

add details to README file and add install ctag to install.sh

pull/4/head
Ein Verne 9 years ago
parent
commit
d17ebde49b
  1. 7
      README.md
  2. 3
      install.sh

7
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

3
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

Loading…
Cancel
Save