host info updates
[distro-setup] / .vim / readme-ian.txt
1 " Note, this config is many years old and needs serious updating.
2
3 notes for everything in .vim.
4
5 .vim/unix.vim
6 this is just a vimrc to set nocomptable for testing
7
8 not currently installed:
9
10 ColorSamplerPack: {{{
11 download from vim.org
12 cd ~/.vim
13 unzip ~/dt/ColorSamplerPack.zip
14 }}}
15 javacomplete - omnicompletion for java.{{{
16 http://www.vim.org/scripts/script.php?script_id=1785
17
18 files are:
19 .vim/autoload/java_parser.vim
20 .vim/doc/javacomplete.txt
21 .vim/autoload/javacomplete.vim
22 .vim/autoload/Reflection.java
23
24 install instructions are on the site, and in the vim documentation.
25 my install procedure:
26 download from website
27 in shell:
28 > unzip ~/dt/javacomplete.zip -d ~/.vim
29 > vim -c "helptags $HOME/.vim/doc"
30 add stuff to vimrc, has "javacomplete near added parts.
31 }}}
32
33 {{{ syntaxattr.vim
34 get this file:
35 autoload/SyntaxAttr.vim
36
37 add this to vimrc:
38
39 autocmd FuncUndefined * exe 'runtime autoload/' . expand('<afile>') . '.vim'
40 map <F6> :call SyntaxAttr()<CR>
41
42 }}}
43
44 syntax/sh.vim, modified from official version to make highlighting better
45
46
47 " vim:sw=4 ts=4 sts=4 foldmethod=marker