From 7a13286c2a2fca1bfa1e07ad3b6dec5d1fa48fd7 Mon Sep 17 00:00:00 2001 From: Alex Kelly Date: Fri, 14 Nov 2014 13:23:02 -0500 Subject: [PATCH] Changed vimrc to add wrap settings based on http://vim.wikia.com/wiki/Word_wrap_without_line_breaks --- vim/vimrc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/vim/vimrc b/vim/vimrc index e133960..cf5354a 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -14,6 +14,12 @@ set rtp+=~/.vim/bundle/vundle/ set pastetoggle= call vundle#rc() +"We are going to try the wrapping functions. We'll see how that works +"Python has nowrap set, so this generally shouldn't suck +set wrap +set linebreak +set nolist + " let Vundle manage Vundle " required! Plugin 'gmarik/vundle'