From 39c0fba8db14476dab5cb74b3a4f5a4029657c22 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Sun, 11 Nov 2018 14:20:16 +0100 Subject: vim: Add vim-mail Signed-off-by: Florian Pritz --- .gitmodules | 3 +++ .vim/bundle/vim-mail | 1 + .vimrc | 12 ++++++++++++ 3 files changed, 16 insertions(+) create mode 160000 .vim/bundle/vim-mail diff --git a/.gitmodules b/.gitmodules index 3d8126a..87016b3 100644 --- a/.gitmodules +++ b/.gitmodules @@ -130,3 +130,6 @@ [submodule ".vim/bundle/vimtex"] path = .vim/bundle/vimtex url = https://github.com/lervag/vimtex.git +[submodule ".vim/bundle/vim-mail"] + path = .vim/bundle/vim-mail + url = https://github.com/dbeniamine/vim-mail.git diff --git a/.vim/bundle/vim-mail b/.vim/bundle/vim-mail new file mode 160000 index 0000000..5adc98b --- /dev/null +++ b/.vim/bundle/vim-mail @@ -0,0 +1 @@ +Subproject commit 5adc98b985790a888f19a6d14219c96fca04a7ef diff --git a/.vimrc b/.vimrc index 12607e1..9b6d7b3 100644 --- a/.vimrc +++ b/.vimrc @@ -116,6 +116,8 @@ Plugin 'thaerkh/vim-workspace' Plugin 'rhysd/vim-grammarous' +Plugin 'dbeniamine/vim-mail' + call vundle#end() syntax on filetype plugin indent on @@ -278,6 +280,16 @@ function! g:grammarous#hooks.on_reset(errs) abort nunmap endfunction +" vim-mail +let g:VimMailContactsProvider='khard' +let g:VimMailSpellLangs=['en', 'de'] +let g:VimMailFromList = [ + \'Florian Pritz ', + \'Florian Pritz ', + \'Florian Pritz ' + \] +let g:VimMailDoNotFold=1 + " unite let g:unite_source_history_yank_enable = 1 call unite#filters#matcher_default#use(['matcher_fuzzy']) -- cgit v1.2.3-24-g4f1b