diff options
| author | jdhao <jdhao@hotmail.com> | 2021-12-04 23:41:56 +0800 |
|---|---|---|
| committer | jdhao <jdhao@hotmail.com> | 2021-12-04 23:41:56 +0800 |
| commit | 50fafcffdb47b992eb6b545e8804460478de0c86 (patch) | |
| tree | 6f4a1b8a1715730a2cd1ead435ec88b2f3c6df3c /after/ftplugin | |
| parent | b9f1d92564e8bc655da3c95dda46f1009c61377c (diff) | |
update default value of option 'wrap'
Diffstat (limited to 'after/ftplugin')
| -rw-r--r-- | after/ftplugin/markdown.vim | 2 | ||||
| -rw-r--r-- | after/ftplugin/tex.vim | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/after/ftplugin/markdown.vim b/after/ftplugin/markdown.vim index 577e9bf..6e4f24e 100644 --- a/after/ftplugin/markdown.vim +++ b/after/ftplugin/markdown.vim @@ -1,6 +1,8 @@ set concealcursor=c set synmaxcol=3000 " For long Chinese paragraphs +set wrap + " Fix minor issue with footnote, see https://github.com/vim-pandoc/vim-markdownfootnotes/issues/22 if exists(':FootnoteNumber') nnoremap <buffer><silent> ^^ :<C-U>call markdownfootnotes#VimFootnotes('i')<CR> diff --git a/after/ftplugin/tex.vim b/after/ftplugin/tex.vim index 868f4e6..5ad98f3 100644 --- a/after/ftplugin/tex.vim +++ b/after/ftplugin/tex.vim @@ -1 +1,3 @@ set textwidth=79 + +set wrap |
