Add heirloom mailx config Signed-off-by: Anirudh Oppiliappan <x@icyphox.sh>
Anirudh Oppiliappan x@icyphox.sh
Sun, 19 Apr 2020 23:18:48 +0530
2 files changed,
45 insertions(+),
1 deletions(-)
A
home/.mailrc
@@ -0,0 +1,39 @@
+set v15-compat +set netrc-lookup +set netrc-pipe='gpg2 -qd ~/.netrc.gpg' +set sendcharsets=utf-8,iso-8859-1 +set reply-in-same-charset +set fullnames +set followup-to followup-to-honour=ask-yes reply-to-honour=ask-yes +set sendwait + +set imap-cache=~/.cache/nail +imap-keepalive=240 + + +account "personal" { + localopts yes + set from="Anirudh Oppiliappan <x@icyphox.sh>" + set folder=imaps://m.icyphox.sh:993 + set record=+Sent + set inbox=+INBOX + set mta=smtp://m.icyphox.sh:587 smtp-use-starttls + shortcut fwc "+Free Writers Club" \ + sent +Sent \ + inbox +INBOX \ + drafts +Drafts \ + trash +Trash \ + archive +Archives +} + +account personal +set askattach +set markanswered +set reply-to-honour +set editalong +set history-gabby history-file=.s-nailhist +set autosort=thread +retain date from to cc subject +set mime-counter-evidence=0xE +commandalias ls !ls -latro +commandalias ps !ps axu
M
home/.vimrc
→
home/.vimrc
@@ -186,7 +186,7 @@
" vim-markdown let g:vim_markdown_no_default_key_mappings=1 let g:vim_markdown_toml_frontmatter=1 -let g:vim_markdown_yaml_fromtmatter=1 +let g:vim_markdown_yaml_frontmatter=1 let g:vim_markdown_folding_disabled=1 let g:vim_markdown_conceal=0@@ -199,3 +199,8 @@ autocmd FileType markdown,mkd,text call pencil#init({'wrap': 'hard', 'autoformat': 0})
augroup END au BufRead,BufNewFile *.asm set filetype=rgbds + +augroup setMail + autocmd! + autocmd BufRead,BufNewFile /tmp/nail-* setlocal ft=mail +augroup END