Required apps are:
- Vim >= 7.1 with Python support
- grep, fgrep, egrep, agrep, find, xargs
If you have old Vim configuration, make backup first:
$ mv ~/.vim ~/.vim_old
$ mv ~/.vimrc ~/.vimrc_old
Then, clone my files to ~/.vim
and make symlink to ~/.vim/vimrc
:
$ git clone git://github.com/husio/vim-configuration.git ~/.vim
$ ln -s ~/.vim/vimrc ~/.vimrc
How to use ctags with python projects? First
of all, generate tags
file:
$ cd myproject
$ find . -name "*.py" | xargs ctags -a
Done. Now :tag <name>
will goto
that name, same as C^] g
with cursor on
some name. More info :h Exuberant_ctags