David Blume commited on 2018-10-07 12:34:44
Showing 1 changed files, with 4 additions and 2 deletions.
... | ... |
@@ -1,4 +1,4 @@ |
1 |
-" Version 2018-08-22.1 - added Control+p for paste onto next line |
|
1 |
+" Version 2018-10-07.1 - Don't set textwidth. I like to hit Return on my own. |
|
2 | 2 |
set nocompatible " Use Vim defaults, forget compatibility with vi. |
3 | 3 |
set bs=2 " allow backspacing over everything in insert mode |
4 | 4 |
set wildmenu " Allows command-line completion with tab |
... | ... |
@@ -227,7 +227,9 @@ if has("autocmd") |
227 | 227 |
" automatically save the file when focus is lost. |
228 | 228 |
" autocmd FocusLost * silent! wa |
229 | 229 |
|
230 |
- autocmd BufRead *.txt set tw=78 " Limit width of text to 78 chars |
|
230 |
+ " I'm in the habit of hitting Return myself. |
|
231 |
+ " autocmd BufRead *.txt set textwidth=78 " Limit width of text to 78 chars |
|
232 |
+ |
|
231 | 233 |
autocmd BufRead *.txt set wrap linebreak nolist " "soft" wrap of existing lines |
232 | 234 |
autocmd BufRead README set wrap linebreak nolist " "soft" wrap of existing lines |
233 | 235 |
|
234 | 236 |