blob: f54b3b9966b9a4ef514fe432f2d2bfc6e02eb337 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
UsePlugin 'memolist.vim'
let g:memolist_path = $HOME . '/.config/memo/_posts'
nmap <Leader>mc :MemoNew<cr>
nmap <Leader>mg :MemoGrep<cr>
let g:memolist_memo_suffix = "md"
let g:memolist_memo_date = "%Y-%m-%d %H:%M"
let g:memolist_qfixgrep = 0
let g:memolist_template_dir_path = $HOME . '/.config/memo/template'
UsePlugin 'ctrlp.vim'
nmap <Leader>mf :exe "CtrlP" g:memolist_path<cr><f5>
|