From 68de9265655f6a6a92c12aa9a948b9dbef311c08 Mon Sep 17 00:00:00 2001 From: Yigit Sever Date: Fri, 15 May 2020 02:33:27 +0300 Subject: nvim ft files --- .config/nvim/after/ftplugin/mail.vim | 53 ++++++++++++++++++++++++++++++++++++ .config/nvim/after/ftplugin/rust.vim | 2 ++ 2 files changed, 55 insertions(+) create mode 100644 .config/nvim/after/ftplugin/mail.vim create mode 100644 .config/nvim/after/ftplugin/rust.vim (limited to '.config/nvim') diff --git a/.config/nvim/after/ftplugin/mail.vim b/.config/nvim/after/ftplugin/mail.vim new file mode 100644 index 0000000..b48389a --- /dev/null +++ b/.config/nvim/after/ftplugin/mail.vim @@ -0,0 +1,53 @@ +setl spell +setl omnifunc=mailcomplete#Complete + +function! s:OnExit(job_id, code, event) dict + if a:code == 0 + " NeoMutt successfully sent the mail. Get rid of the terminal buffer and window. + " We can't use plain `bd!` because the terminal window may no longer have focus. + execute 'bd!' s:bufnr + " Quit if we succeeded in sending the email and there's only one buffer left. + if len(getbufinfo({'buflisted': 1})) == 1 + quit + endif + else + " We didn't send the mail. Go back to the buffer with the message. FIXME: we + " probably shouldn't rely on a [plugin][1]. + execute 'Bd!' s:bufnr + endif +endfunction +" [1]: https://github.com/moll/vim-bbye +" [2]: https://github.com/neovim/neovim/issues/4291 +" [3]: https://vi.stackexchange.com/q/10292 +" [4]: https://redd.it/46g5wy +" [5]: https://github.com/neovim/neovim/issues/5176 + +function! s:SendMail() + let l:message_file = expand('%') + if l:message_file != '' + update + else + " Cope with the buffer not having an associated file. TODO: delete this file if we + " succeed in sending the mail? + let l:message_file = system('mktemp') + execute 'w!' l:message_file + endif + enew + " Tell NeoMutt to use `true` as the editor. This makes it show the compose menu + " directly instead of starting Vim inside of Vim. Also don't use the curses pinentry + " program. There seem to be some issues when using it from NeoMutt inside Vim inside + " screen(1). + call termopen('VISUAL=true PINENTRY_USER_DATA=gtk neomutt ' . + \ "-e 'set postpone=no sidebar_visible=no assumed_charset=utf-8' " . + \ "-H " . l:message_file, {'on_exit': function('s:OnExit')}) + let s:bufnr = bufnr('%') + startinsert +endfunction + +nnoremap :call SendMail() + +nnoremap f gg/From::nohlsearch4lC: +nnoremap t gg/To::nohlsearch2lC: +nnoremap c gg/Cc::nohlsearch2lC: +nnoremap b gg/Bcc::nohlsearch3lC: +nnoremap s gg/Subject::nohlsearch7lC: diff --git a/.config/nvim/after/ftplugin/rust.vim b/.config/nvim/after/ftplugin/rust.vim new file mode 100644 index 0000000..542d070 --- /dev/null +++ b/.config/nvim/after/ftplugin/rust.vim @@ -0,0 +1,2 @@ +let b:ale_fixers = ['rustfmt'] +let b:ale_linters = ['rls'] -- cgit v1.2.3-70-g09d2