From: Simon Ruderich Date: Thu, 7 Jun 2012 14:11:52 +0000 (+0200) Subject: vimrc: Only use 'foldcolumn' if there's enough space. X-Git-Url: https://ruderich.org/simon/gitweb/?p=config%2Fdotfiles.git;a=commitdiff_plain;h=26ef96d408b32e71a95eaedc3fd04a9a11479dd3 vimrc: Only use 'foldcolumn' if there's enough space. --- diff --git a/vimrc b/vimrc index bc126c8..cfd10d4 100644 --- a/vimrc +++ b/vimrc @@ -139,7 +139,11 @@ set incsearch " Activate syntax folding. if has('folding') set foldmethod=syntax - set foldcolumn=2 + " Only use fold column if we have enough space (for example in a (virtual) + " terminals). + if &columns > 80 + set foldcolumn=2 + endif set foldlevel=99 " no closed folds at default, 'foldenable' would disable " folding which is not what I want endif