From 757ee762a0fc70b177f7520e81a00dceaf05802e Mon Sep 17 00:00:00 2001 From: Jean Privat Date: Tue, 29 May 2012 22:47:57 -0400 Subject: [PATCH] vim: README explain how to install nit for vim We officially rely on pathogen that is great and simpler. Signed-off-by: Jean Privat --- misc/README | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/misc/README b/misc/README index b49dd3c..f7cdcff 100644 --- a/misc/README +++ b/misc/README @@ -1,5 +1,30 @@ # gtksourceview (gedit and other GTK editors) To install in your home, just link (or copy) the language definition file in ~/.local/share/gtksourceview-2.0/language-specs +# vim + +vim is a powerful text editor. +The misc/vim directory contains the support of nit files to vim. + +### Install + +The simpler way to install nit for vim is with [pathogen][1]. + + cd ~/.vim/bundle + ln -s /full/path/to/nit/misc/vim nit + +Ensure that your .vimrc contains + + call pathogen#infect() + syntax on + filetype plugin indent on + + [1]: https://github.com/tpope/vim-pathogen + +### Features + + * syntax highlighting + * indentation + # syntastic Syntastic is a syntax checker for Vim. To use the Nit checker, install syntastic and copy syntastic/nit.vim in your syntastic/syntax_checkers folder. -- 1.7.9.5