1 files changed, 10 insertions(+), 1 deletions(-)

M vim/vimrc
M vim/vimrc +10 -1
@@ 137,7 137,12 @@ augroup END
 " http://joeclark.org/ffaq.html
 " http://wcm1.web.rice.edu/mutt-tips.html
 augroup mutt
-  au BufRead,BufNewFile *mutt* set filetype=mail
+  au BufRead,BufNewFile *mutt* set spell filetype=mail
+  autocmd FileType mail setlocal fo+=aw tw=72
+augroup END
+
+augroup aerc
+  au BufRead,BufNewFile aerc-compose-*.eml set spell filetype=mail
   autocmd FileType mail setlocal fo+=aw tw=72
 augroup END
 

          
@@ 451,6 456,10 @@ let g:Lf_WildIgnore = {
 let g:Lf_NormalMap = {
     \ "File":   [["u", ':LeaderfFile ..<CR>']]
     \}
+" Tips from: https://jdhao.github.io/2020/08/26/leaderf_nvim_settings/
+let g:Lf_ShowDevIcons = 0   " Don't use file icons
+let g:Lf_WorkingDirectoryMode = 'a'  " Search entire repo, not just from cur dir
+" let g:Lf_UseMemoryCache = 0  " Don't cache project files
 
 " vim-markdown
 let g:vim_markdown_folding_disabled=1