From 9e7dcd349b5bd4f5b746b050e5a0aedcdc61b4ec Mon Sep 17 00:00:00 2001 From: Nick Nisi Date: Thu, 21 Nov 2013 12:29:22 -0600 Subject: [PATCH] Turn off line-wrapping and add visible indicator --- vim/vimrc.symlink | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/vim/vimrc.symlink b/vim/vimrc.symlink index cf45875..8ac5469 100644 --- a/vim/vimrc.symlink +++ b/vim/vimrc.symlink @@ -33,7 +33,7 @@ let g:mapleader = "," " change history to 1000 set history=10000 -set textwidth=80 +" set textwidth=80 " Tab control set noexpandtab " insert tabs rather than spaces for @@ -129,6 +129,9 @@ set tm=500 " switch syntax highlighting on syntax on +highlight ColorColumn ctermbg=magenta +call matchadd('ColorColumn', '\%81v', 100) + set encoding=utf8 set t_Co=256 " Explicitly tell vim that the terminal supports 256 colors" set background=dark @@ -145,7 +148,7 @@ set linebreak " set soft wrapping set showbreak=… " show ellipsis at breaking set autoindent " automatically set indent of new line -set smartindent +set smartindent try lang en_US