this repo has no description

vimrc: word wrapping by default and in markdown

seth.computer 5cf55576 dfdb4400

verified
+6
+6
vim/vimrc
··· 12 12 set expandtab 13 13 set hidden 14 14 set nowrap 15 + 16 + if &filetype == "" || &filetype == "markdown" || &filetype == "text" 17 + set wrap 18 + set linebreak 19 + set nolist 20 + endif