From 4897fbde83778e50d88104568935c0386fde557d Mon Sep 17 00:00:00 2001 From: Jaron Kent-Dobias Date: Tue, 3 Mar 2020 12:19:17 -0500 Subject: Several config changes. - Updated Plugged repos. - Enabled whitespace treatment for flowed mail. --- .gitignore | 1 + .netrwhist | 5 ----- plugged/coc.nvim | 2 +- plugged/vim-fugitive | 2 +- plugged/vimtex | 2 +- spell/en.utf-8.add | 2 ++ vimrc | 8 ++++++++ 7 files changed, 14 insertions(+), 8 deletions(-) delete mode 100644 .netrwhist diff --git a/.gitignore b/.gitignore index ff11a15..2ddb246 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ info swaps/* spell/*.spl +.netrwhist diff --git a/.netrwhist b/.netrwhist deleted file mode 100644 index 61a9be5..0000000 --- a/.netrwhist +++ /dev/null @@ -1,5 +0,0 @@ -let g:netrw_dirhistmax =10 -let g:netrw_dirhistcnt =3 -let g:netrw_dirhist_3='/home/pants/.config/compose_key/xcompose' -let g:netrw_dirhist_2='/home/pants/doc/research/fracture/code/fuse_networks/lib/include' -let g:netrw_dirhist_1='/home/pants/doc/research/wolff/code/ising_sampling/wolff' diff --git a/plugged/coc.nvim b/plugged/coc.nvim index 8bb3f86..d4dd5b3 160000 --- a/plugged/coc.nvim +++ b/plugged/coc.nvim @@ -1 +1 @@ -Subproject commit 8bb3f861a13f540483d0102b2c104382a3a6073d +Subproject commit d4dd5b318f32790ae9a4cb4945c7eb0063b07d06 diff --git a/plugged/vim-fugitive b/plugged/vim-fugitive index f6acae5..3c3e6ea 160000 --- a/plugged/vim-fugitive +++ b/plugged/vim-fugitive @@ -1 +1 @@ -Subproject commit f6acae50ea4d8ec1bb1497cb886d80298b54831b +Subproject commit 3c3e6ea67b0250db077e4a7c1b033f4537893e26 diff --git a/plugged/vimtex b/plugged/vimtex index ed84cd4..7827aee 160000 --- a/plugged/vimtex +++ b/plugged/vimtex @@ -1 +1 @@ -Subproject commit ed84cd409a77711b5a0ac07ec2f8f2aa5b352ad2 +Subproject commit 7827aee949eed7dfb2744512959b1d36ef21d140 diff --git a/spell/en.utf-8.add b/spell/en.utf-8.add index 907c9b6..220a165 100644 --- a/spell/en.utf-8.add +++ b/spell/en.utf-8.add @@ -172,3 +172,5 @@ extremized commensurability orthorhombicity uniaxial +hyperribbons +hyperribbon diff --git a/vimrc b/vimrc index ea1c98e..3b9970d 100644 --- a/vimrc +++ b/vimrc @@ -59,6 +59,8 @@ inoremap pumvisible() ? "\" : "\" inoremap pumvisible() ? "\" : "\u\" +let g:mma_candy = 2 + vmap p (coc-format-selected) nmap p (coc-format-selected) nmap P (coc-format) @@ -94,3 +96,9 @@ Plug 'voldikss/vim-mma' call plug#end() +" Add format option 'w' to add trailing white space, indicating that paragraph +" continues on next line. This is to be used with mutt's 'text_flowed' option. +augroup mail_trailing_whitespace " { + autocmd! + autocmd FileType mail setlocal formatoptions+=w +augroup END " } -- cgit v1.2.3-54-g00ecf