aboutsummaryrefslogtreecommitdiffhomepage
path: root/.vim/my/after/ftplugin/todolist.vim
blob: 7235deb22ed62a70d21791a20edc174afa6c64e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
scriptencoding utf-8


if exists('b:did_ftplugin_after_todolist')
    finish
endif



FtpluginSetLocal expandtab
FtpluginSetLocal shiftwidth=4
FtpluginSetLocal softtabstop=4
" FtpluginSetLocal foldmethod=indent


let b:caw_oneline_comment = '//'


let b:lexima_disabled = 1
" for lexima
inoremap <nowait> <buffer>  <ESC>  <ESC>


nmap <buffer>  ,x  <Plug>(todolist-toggle-checkbox)
nmap <buffer>  ,X  <Plug>(todolist-toggle-checkbox-rec)



let b:did_ftplugin_after_todolist = 1