From 26ef96d408b32e71a95eaedc3fd04a9a11479dd3 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Thu, 7 Jun 2012 16:11:52 +0200 Subject: [PATCH] vimrc: Only use 'foldcolumn' if there's enough space. --- vimrc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 -- 2.44.1