Skip to content

Latest commit

 

History

History
54 lines (42 loc) · 1.77 KB

index.md

File metadata and controls

54 lines (42 loc) · 1.77 KB
title date template
Vim notes
2017-01-15 15:00
article.pug

[[toc]]

List of plugins I use

Initializing ~/.vim/bundle on a new machine:

xclip -o | while read repo comment; do git clone "$repo"; done

Markdown configuration

let g:vim_markdown_conceal = 0
let g:vim_markdown_fenced_languages = ['bash=sh', 'java', 'python', 'html', 'javascript']
let g:vim_markdown_frontmatter = 1
let g:vim_markdown_new_list_item_indent = 2

" by default mkdCode is String, but I find PreProc (blueish in my config) nicer
autocmd filetype markdown hi link mkdCode PreProc

" make code start and end more visible, since now the code is not all in one color
autocmd filetype markdown hi mkdCodeStart cterm=bold ctermfg=16 ctermbg=43
autocmd filetype markdown hi link mkdCodeEnd mkdCodeStart

Interesting plugins to check out one day