From: Simon Ruderich Date: Sun, 1 Nov 2009 03:24:23 +0000 (+0100) Subject: vimrc: Always display the statusline. X-Git-Url: https://ruderich.org/simon/gitweb/?a=commitdiff_plain;h=8bac9ab6d04a00e3804ecf831de54c2dd2f533a0;p=config%2Fdotfiles.git vimrc: Always display the statusline. --- diff --git a/vimrc b/vimrc index 98009b8..d8ed984 100644 --- a/vimrc +++ b/vimrc @@ -117,6 +117,11 @@ if v:version >= 700 set listchars+=nbsp:! endif +" Always display the status line even if there is only one window. +if has('statusline') + set laststatus=2 +endif + " MAPPINGS (except for plugins, see PLUGIN SETTINGS below)