Created
April 20, 2010 15:54
-
-
Save nelstrom/372671 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Switch wrap off for everything | |
set nowrap | |
if has("autocmd") | |
" This is probably in your .vimrc already. No need to duplicate! | |
filetype plugin indent on | |
" Set File type to 'text' for files ending in .txt | |
autocmd BufNewFile,BufRead *.txt setfiletype text | |
" Enable soft-wrapping for text files | |
autocmd FileType text,markdown,html setlocal wrap linebreak nolist | |
endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment