Background
I wanted to use some vim plugins (used it plain vanilla before). I installed
vundle (my .vimrc is at the bottom).
I ran PluginInstall and it went ok, PluginList shows:
" My Plugins
Plugin 'VundleVim/Vundle.vim'
Plugin 'sjl/badwolf'
Plugin 'itchyny/lightline.vim'
Plugin 'tomtom/tcomment_vim'
Plugin 'easymotion/vim-easymotion'
Plugin 'nathanaelkane/vim-indent-guides'
Plugin 'junegunn/fzf'
Problem
When I open vim, the status bar from lightline does not show. However, if I do
:help or :PluginList, these windows have the status bar from lightline.
This has been driving me insane and I have uninstalled/installed vim countless times now, to no avail, so any help will be hugely appreciated!
.vimrc
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')
" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
Plugin 'sjl/badwolf'
Plugin 'itchyny/lightline.vim'
Plugin 'tomtom/tcomment_vim'
Plugin 'easymotion/vim-easymotion'
Plugin 'nathanaelkane/vim-indent-guides'
Plugin 'junegunn/fzf'
call vundle#end() " required
filetype plugin indent on " required
:help 'laststatus'(In the comments, I mistakenly pointed the OP towards
'statusline'.)The default value of
'laststatus'means that the status line will only show if there are at least two windows, and it usually only shows up in the last window.To show it always, add
to your vimrc.