dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles
Log | Files | Refs | README | LICENSE Back to index

commit 189a935205c5032f6272a3f43839d4a272bb8ff4
parent 7b4e3bbcba8441e6968ccc9ca02ae88b59a9cb7d
Author: Anders Damsgaard <anders.damsgaard@geo.au.dk>
Date:   Tue, 24 Nov 2015 15:34:47 +0100

add vim-markdown

Diffstat:
M.vimrc | 14++++++++++++++
1 file changed, 14 insertions(+), 0 deletions(-)

diff --git a/.vimrc b/.vimrc @@ -150,6 +150,12 @@ NeoBundle 'kchmck/vim-coffee-script' " Support mixed php and html NeoBundle 'captbaritone/better-indent-support-for-php-with-html' +" Line up text (req for vim-markdown) +NeoBundle 'godlygeek/tabular' + +" Markdown support +NeoBundle 'plasticboy/vim-markdown' + call neobundle#end() filetype plugin indent on @@ -574,3 +580,11 @@ let g:pymode_folding = 0 let g:user_emmet_mode='n' let g:user_emmet_mode='inv' let g:user_emmet_mode='a' + + +" vim-markdown configuration +" navigate headers with ]] and [[ +" format a table with :TableFormat +" create a navigation table with :Toc, :Toch, :Tocv +let g:vim_markdown_folding_disabled=1 +let g:vim_markdown_math=1