husio / vim-configuration
- Source
- Commits
- Network (0)
- Downloads (0)
- Graphs
-
Branch:
master
Piotr Husiatyński (author)
Sun Jan 31 22:28:59 -0800 2010
| name | age | message | |
|---|---|---|---|
| |
README.markdown | Sat Sep 19 23:18:48 -0700 2009 | |
| |
after/ | Mon Jul 13 13:19:09 -0700 2009 | |
| |
autoload/ | Mon Jul 13 13:19:09 -0700 2009 | |
| |
colors/ | Wed Dec 09 10:49:16 -0800 2009 | |
| |
compiler/ | Sat Jun 13 02:24:47 -0700 2009 | |
| |
doc/ | Sun Jan 31 22:28:59 -0800 2010 | |
| |
ftplugin/ | Sun Jan 31 22:28:59 -0800 2010 | |
| |
indent/ | Sat Sep 26 15:03:15 -0700 2009 | |
| |
plugin/ | Sun Jan 31 22:28:59 -0800 2010 | |
| |
snippets/ | Sun Aug 23 04:21:57 -0700 2009 | |
| |
syntax/ | ||
| |
vimrc | Sun Jan 31 22:28:33 -0800 2010 |
README.markdown
Installation:
Install additional apps:
Required apps are:
- Vim >= 7.1 with Python support
- grep, fgrep, egrep, agrep, find, xargs
Make old Vim configuration backup
If you have old Vim configuration, make backup first:
$ mv ~/.vim ~/.vim_old
$ mv ~/.vimrc ~/.vimrc_old
Clone and install
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
Even more features you may want to know
Ctags & Python
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

