Markdown記法の環境構築

VimのMarkdown記法の環境を整えてみました。(Macの場合)

Vim プラグイン

neobundle.vim を入れていると以下のような感じです。

NeoBundle 'hallison/vim-markdown'
NeoBundle 'thinca/vim-quickrun'
NeoBundle 'tyru/open-browser.vim'
  • quickrun_config設定の場合(defaultで入っているらしい)
let g:quickrun_config['markdown'] = {
    \ 'command'  : 'bluecloth',
    \ 'exec'     : '%c -f %s',
    \ }

bluecloth

bash-3.2$ gem install bluecloth