⚫ home ⚫ about ⚫ pale of notes ⚫ articles by date

Vim notes

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