summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaron Kent-Dobias <jaron@kent-dobias.com>2020-03-03 12:19:17 -0500
committerJaron Kent-Dobias <jaron@kent-dobias.com>2020-03-03 12:19:17 -0500
commit4897fbde83778e50d88104568935c0386fde557d (patch)
tree5bfa9e0c14c9c5e8e54dbae54ea478d209a29887
parentdfc6b7f9128117b655b4d8e35191e48c5f704bba (diff)
downloadvim-4897fbde83778e50d88104568935c0386fde557d.tar.gz
vim-4897fbde83778e50d88104568935c0386fde557d.tar.bz2
vim-4897fbde83778e50d88104568935c0386fde557d.zip
Several config changes.
- Updated Plugged repos. - Enabled whitespace treatment for flowed mail.
-rw-r--r--.gitignore1
-rw-r--r--.netrwhist5
m---------plugged/coc.nvim0
m---------plugged/vim-fugitive0
m---------plugged/vimtex0
-rw-r--r--spell/en.utf-8.add2
-rw-r--r--vimrc8
7 files changed, 11 insertions, 5 deletions
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
-Subproject 8bb3f861a13f540483d0102b2c104382a3a6073
+Subproject d4dd5b318f32790ae9a4cb4945c7eb0063b07d0
diff --git a/plugged/vim-fugitive b/plugged/vim-fugitive
-Subproject f6acae50ea4d8ec1bb1497cb886d80298b54831
+Subproject 3c3e6ea67b0250db077e4a7c1b033f4537893e2
diff --git a/plugged/vimtex b/plugged/vimtex
-Subproject ed84cd409a77711b5a0ac07ec2f8f2aa5b352ad
+Subproject 7827aee949eed7dfb2744512959b1d36ef21d14
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 <expr> <S-Tab> pumvisible() ? "\<C-p>" : "\<S-Tab>"
inoremap <expr> <cr> pumvisible() ? "\<C-y>" : "\<C-g>u\<CR>"
+let g:mma_candy = 2
+
vmap <leader>p <Plug>(coc-format-selected)
nmap <leader>p <Plug>(coc-format-selected)
nmap <leader>P <Plug>(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 " }