public
Description: complete vim configuration that I'm using
Homepage:
Clone URL: git://github.com/husio/vim-configuration.git
name age message
file README.markdown Sat Sep 19 23:18:48 -0700 2009 README update [Piotr Husiatyński]
directory after/ Mon Jul 13 13:19:09 -0700 2009 snipMate update [Piotr Husiatyński]
directory autoload/ Mon Jul 13 13:19:09 -0700 2009 snipMate update [Piotr Husiatyński]
directory colors/ Fri Nov 13 10:23:04 -0800 2009 default colorscheme changed to mustang [Piotr Husiatyński]
directory compiler/ Sat Jun 13 02:24:47 -0700 2009 + cscope info added * C snippets change - tagli... [Piotr Husiatyński]
directory doc/ Tue Sep 01 12:23:43 -0700 2009 fuzzyfinder plugin added [Piotr Husiatyński]
directory ftplugin/ Thu Sep 17 14:00:40 -0700 2009 new pyflakes plugin for Vim http://www.vim.org... [Piotr Husiatyński]
directory indent/ Sat Sep 26 15:03:15 -0700 2009 fixed indent for javascript [Piotr Husiatyński]
directory plugin/ Sun Oct 25 03:37:52 -0700 2009 supertab plugin update to 0.61 version [Piotr Husiatyński]
directory snippets/ Sun Aug 23 04:21:57 -0700 2009 cleanup * unused plugins/snippets removed * ... [Piotr Husiatyński]
directory syntax/ Sun Oct 25 03:38:09 -0700 2009 jquery syntax plugin update [Piotr Husiatyński]
file vimrc Fri Nov 13 10:23:04 -0800 2009 default colorscheme changed to mustang [Piotr Husiatyński]
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