From 7c16f687e0142614c9b5505039e5b9b78099a84a Mon Sep 17 00:00:00 2001 From: Fernando Schauenburg Date: Thu, 9 Feb 2017 20:01:47 +0100 Subject: [PATCH] [vim] prevent duplicate bufferline Without the option: let g:bufferline_echo = 0 bufferline will echo the buffer list to the command bar. Since vim-airline is also in use (and it too displays the buffer list), we get duplicated information. By setting the above option we get the buffer list only inside the airline (status line). --- vimrc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vimrc b/vimrc index 9d40590..e3d9403 100644 --- a/vimrc +++ b/vimrc @@ -85,6 +85,8 @@ set nocompatible let g:airline_symbols.linenr = '␤' let g:airline_symbols.whitespace = '✗' + let g:bufferline_echo = 0 + colorscheme solarized filetype plugin indent on syntax enable