//php the_content_rss('', FALSE, '', 68); ?>
http://www.vim.org/scripts/script.php?script_id=1886
上記のサイトからnginxのSyntaxをDLしてくる
$ mv nginx.vim ./usr/share/vim/vim70/syntax/
or
$ mv nginx.vim .vim/syntax/
$ vi ~.vim/filetype.vim
au BufRead,BufNewFile /etc/nginx/conf.d/* set ft=nginx
こんな感じです。

で完了
//php the_content_rss('', FALSE, '', 68); ?>
フォントサイズの変更
" フォント設定:
if has('win32')
" Windows用
set guifont=MS_Gothic:h10:cSHIFTJIS ← h12だったものを、h10に変更
"set guifont=MS_Mincho:h12:cSHIFTJIS
" 行間隔の設定
set linespace=1
" 一部のUCS文字の幅を自動計測して決める
if has('kaoriya')
set ambiwidth=auto
endif
elseif has('mac')
set guifont=Osaka−等幅:h14
elseif has('xfontset')
" UNIX用 (xfontsetを使用)
set guifontset=a14,r14,k14
endif
タブを記号で表示する設定
"タブの表示設定
:set ts=2 sw=2 sts=0
"記号で表示
:set list

追記
ついでに、下記の内容も追加
"バックファイルをつくらない
:set nobackup
"行数を表示させる
:set number