husio / vim-configuration

complete vim configuration that I'm using

This URL has Read+Write access

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/ Wed Dec 09 10:49:16 -0800 2009 new pyflakes added [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/ Wed Dec 09 10:49:16 -0800 2009 new pyflakes added [Piotr Husiatyński]
directory indent/ Sat Sep 26 15:03:15 -0700 2009 fixed indent for javascript [Piotr Husiatyński]
directory plugin/ Mon Nov 30 08:52:32 -0800 2009 more shortkeys for colorscheme selector [Piotr Husiatyński]
directory snippets/ Sun Aug 23 04:21:57 -0700 2009 cleanup * unused plugins/snippets removed * ... [Piotr Husiatyński]
directory syntax/ Tue Dec 22 14:27:12 -0800 2009 markdown syntax file added [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