あとは,以下のような設定を, ~/.vimrc (私は,gvimrc に書き込みました) にコピペすれば OK です.
" REQUIRED. This makes vim invoke latex-suite when you open a tex file. filetype plugin on
" IMPORTANT: win32 users will need to have 'shellslash' set so that latex " can be called correctly. set shellslash
" IMPORTANT: grep will sometimes skip displaying the file name if you " search in a singe file. This will confuse latex-suite. Set your grep " program to alway generate a file-name. set grepprg=grep\ -nH\ $*
" OPTIONAL: This enables automatic indentation as you type. filetype indent on
" 各自の環境に合わせた .tex ファイルを dvi ファイルにコンパイルするコマンドに,適宜置き換えてください. (Vine Linux 3.1 の場合) let g:Tex_CompileRule_dvi = 'platex $*'
" 同様に,dvi ファイルのビューワー let g:Tex_ViewRule_dvi = 'xdvi'