LoginSignup
19
21

More than 5 years have passed since last update.

previmに感動したのでcssをQiita仕様にしてみた

Last updated at Posted at 2014-09-24
  • preview/css/user_custom.css に書けば話は済むのですが・・・。

スクリーンショット 2014-09-24 13.01.25.png

インストール

~/.vimrc
  NeoBundle 'plasticboy/vim-markdown'
- NeoBundle 'kannokanno/previm'
+ NeoBundle 'tukiyo/previm'
  NeoBundle 'tyru/open-browser.vim'

NeoBundleインストール

NeoBundleインストール
mkdir -p ~/.vim/bundle
git clone \
 https://github.com/Shougo/neobundle.vim \
 ~/.vim/bundle/neobundle.vim

.vimrc

"必須
set runtimepath+=~/.vim/bundle/neobundle.vim/
call neobundle#begin(expand('~/.vim/bundle/'))
NeoBundleFetch 'Shougo/neobundle.vim'

""""""""""""""""""""""""""
" render - :PrevimOpen
NeoBundle 'plasticboy/vim-markdown'
NeoBundle 'tukiyo/previm'
NeoBundle 'tyru/open-browser.vim'

"必須
call neobundle#end()
filetype plugin indent on
NeoBundleCheck "未インストールのプラグインの確認

""""""""""""""""""""""""""
" markdown
let g:vim_markdown_initial_foldlevel=1
19
21
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
19
21