Error detected while processing /home/kyle/.vim/ftplugin/haskell_doc.vim:
これは、vim を実行しているときに発生するエラーです。Haskellで動作するように構文を取得しようとしています。ここに.vimrcファイルがあります
"use ghc functionality for haskell files
au Bufenter *.hs compiler ghc
" switch on syntax highlighting
syntax on
" side numbers
set nu
let g:ghc = "/usr/bin/ghc"
execute pathogen#infect()
let g:haddock_docdir = "/usr/share/doc/ghc6-doc/html/"
" enable filetype detection, plus loading of filetype plugins
filetype plugin on
let g:haddock_browser = "/usr/bin/firefox"