瀏覽代碼

add markdown-plugins

Kevin H 11 年之前
父節點
當前提交
a13dec8150
共有 1 個文件被更改,包括 7 次插入1 次删除
  1. 7 1
      vimrc

+ 7 - 1
vimrc

@@ -20,6 +20,8 @@ Plugin 'chriskempson/tomorrow-theme', {'rtp': 'vim/'}
 Plugin 'altercation/vim-colors-solarized'
 Plugin 'bling/vim-airline'
 Plugin 'terryma/vim-multiple-cursors'
+Plugin 'suan/vim-instant-markdown'
+Plugin 'tpope/vim-markdown'
 " all three following plugins are needed for vim-snipmate
 Bundle "MarcWeber/vim-addon-mw-utils"
 Bundle "tomtom/tlib_vim"
@@ -111,7 +113,11 @@ let g:airline#extensions#tabline#enabled = 1
 let g:airline#extensions#tabline#buffer_nr_show = 1
 
 " multiple-cursors mapping
-let g:multi_cursor_nextkey='<C-d>'
+let g:multi_cursor_use_default_mapping=0
+let g:multi_cursor_next_key='<C-d>'
+let g:multi_cursor_prev_key='<C-p>'
+let g:multi_cursor_skip_key='<C-x>'
+let g:multi_cursor_quit_key='<Esc>'
 
 " activate mouse support
 set mouse=a