diff options
| author | Teddy Wing | 2019-08-01 21:24:06 +0200 | 
|---|---|---|
| committer | Teddy Wing | 2019-08-01 21:24:06 +0200 | 
| commit | edfc3b2488c8fcdb0bd435c9dd046427bfecf24b (patch) | |
| tree | 325b3e179fe302fe231a0b245f526aa3c93d29e0 | |
| parent | aff749bdc4f6ab381a40f714f216bcd942fbbc2b (diff) | |
| download | dotvim-edfc3b2488c8fcdb0bd435c9dd046427bfecf24b.tar.bz2 | |
ftplugin/netrw.vim: Remove `nowrap` from `g:netrw_bufsettings`
This seemed to cause files I opened with Netrw to have `set nowrap`,
overriding the `set wrap` I have in my vimrc.
| -rw-r--r-- | ftplugin/netrw.vim | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/ftplugin/netrw.vim b/ftplugin/netrw.vim index 78710e8..2a36076 100644 --- a/ftplugin/netrw.vim +++ b/ftplugin/netrw.vim @@ -1,3 +1,3 @@  " Show line numbers in Netrw. Copied and modified from:  "   :Explore | echo g:netrw_bufsettings -let g:netrw_bufsettings='noma nomod nu nobl nowrap ro' +let g:netrw_bufsettings='noma nomod nu nobl ro' | 
