diff options
author | Nao Ueda <nao.uedder@gmail.com> | 2020-03-29 19:26:10 +0900 |
---|---|---|
committer | Nao Ueda <nao.uedder@gmail.com> | 2020-03-29 19:26:10 +0900 |
commit | cab17475d9c0b6cd03e1619f8f4bc1068a914cfc (patch) | |
tree | b83c77f1c2d2740b402092e51cb579816e598a15 /_config | |
parent | 2addc29e77fc4009634c83b96da461474f730edd (diff) | |
download | vimrc-cab17475d9c0b6cd03e1619f8f4bc1068a914cfc.tar.gz vimrc-cab17475d9c0b6cd03e1619f8f4bc1068a914cfc.tar.bz2 vimrc-cab17475d9c0b6cd03e1619f8f4bc1068a914cfc.zip |
Add memolist.
Diffstat (limited to '_config')
-rw-r--r-- | _config/400-memolist.vim | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/_config/400-memolist.vim b/_config/400-memolist.vim new file mode 100644 index 0000000..8f45986 --- /dev/null +++ b/_config/400-memolist.vim @@ -0,0 +1,14 @@ +if empty(globpath(&rtp, 'autoload/memolist.vim')) + finish +endif + +let g:memolist_path = $HOME . '/memo' + +nnoremap <Leader>mn :MemoNew<CR> +nnoremap <Leader>ml :MemoList<CR> +nnoremap <Leader>mg :MemoGrep<CR> + +let g:memolist_memo_suffix = "md" +let g:memolist_memo_date = "%Y-%m-%d %H:%M" +let g:memolist_qfixgrep = 1 +let g:memolist_fzf = 1 |