aboutsummaryrefslogtreecommitdiff
path: root/.vim/after/ftplugin/markdown.vim
blob: a5a626840c76c9a852c0a67360de39758c95adec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
nmap <buffer> j gj
nmap <buffer> k gk

autocmd CursorHold,CursorHoldI <buffer> silent update

setlocal iskeyword+=[,\-

" setlocal formatoptions-=t
" setlocal formatoptions-=c

nnoremap <silent> <buffer> <localleader>t :call markdown#todo_items_set_next()<cr>
nnoremap <silent> <buffer> <localleader>Td :call markdown#todo_items_set('DONE')<cr>