From bf88629c48c79419bef18429cb1fa89a18dce862 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Thu, 9 Jan 2014 09:37:37 -0200 Subject: [PATCH] add a highlight to the break column in python files --- configs/vimrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/vimrc b/configs/vimrc index 9173dbb..66feac6 100644 --- a/configs/vimrc +++ b/configs/vimrc @@ -107,7 +107,7 @@ if has("autocmd") " (use spaces instead of tabs (expandtab), uses 4 spaces for tabs (tabstop), " when auto-indenting, also use 4 spaces (shiftwidth), when deleting text, 4 " spaces are a tab (softtabstop) and break the line at column 78 (textwidth)) - au FileType python setlocal expandtab tabstop=4 shiftwidth=4 softtabstop=4 textwidth=78 + au FileType python setlocal expandtab tabstop=4 shiftwidth=4 softtabstop=4 textwidth=78 colorcolumn=79 " reStructured files follow python closely, but use 3 tab stops instead of 4 au FileType rst setlocal expandtab tabstop=3 sw=3 sts=3 textwidth=78