Add vim-bufferline to install list

Also add associated settings file to configure vim-bufferline
master
nirenjan 2014-03-17 22:12:08 -07:00
parent 17a66de254
commit 30d5fabf2b
3 changed files with 19 additions and 3 deletions

View File

@ -278,6 +278,7 @@ lnfile vimrc ~/.vimrc
lnfile vim/plugin/long-lines.vim ~/.vim/plugin/
lnfile vim/plugin/match-brackets.vim ~/.vim/plugin/
lnfile vim/plugin/airline-settings.vim ~/.vim/plugin/
lnfile vim/plugin/bufferline-settings.vim ~/.vim/plugin/
# Install my ftdetect plugins
lnfile vim/ftdetect/swig.vim ~/.vim/ftdetect/
@ -302,6 +303,7 @@ Bundle vimwiki # Vimwiki
Bundle msanders/snipmate.vim # snipMate
Bundle tomtom/tcomment_vim # tComment
Bundle bling/vim-airline # Airline is awesome!
Bundle bling/vim-bufferline # Display buffers in Airline
#######################################################################
# Install tmux & screen config files

View File

@ -0,0 +1,11 @@
" File: bufferline-settings.vim
" Author: Nirenjan Krishnan
" Description: Settings for the bufferline plugin
" Last Modified: March 17, 2014
" Do not echo to the command bar (It's already showing up in airline)
let g:bufferline_echo = 0
" Allow scrolling, place the active buffer at the end
let g:bufferline_rotate = 1
let g:bufferline_fixed_index = -1

3
vimrc
View File

@ -40,6 +40,9 @@ set hlsearch
" Show status line
set laststatus=2
" Enable hidden buffers
set hidden
" Show tab line
set showtabline=2