mirror of https://github.com/nirenjan/dotfiles.git
Add vim-bufferline to install list
Also add associated settings file to configure vim-bufferlinemaster
parent
17a66de254
commit
30d5fabf2b
8
install
8
install
|
@ -275,9 +275,10 @@ mkfolder ~/.vim/syntax
|
||||||
lnfile vimrc ~/.vimrc
|
lnfile vimrc ~/.vimrc
|
||||||
|
|
||||||
# Install my plugins
|
# Install my plugins
|
||||||
lnfile vim/plugin/long-lines.vim ~/.vim/plugin/
|
lnfile vim/plugin/long-lines.vim ~/.vim/plugin/
|
||||||
lnfile vim/plugin/match-brackets.vim ~/.vim/plugin/
|
lnfile vim/plugin/match-brackets.vim ~/.vim/plugin/
|
||||||
lnfile vim/plugin/airline-settings.vim ~/.vim/plugin/
|
lnfile vim/plugin/airline-settings.vim ~/.vim/plugin/
|
||||||
|
lnfile vim/plugin/bufferline-settings.vim ~/.vim/plugin/
|
||||||
|
|
||||||
# Install my ftdetect plugins
|
# Install my ftdetect plugins
|
||||||
lnfile vim/ftdetect/swig.vim ~/.vim/ftdetect/
|
lnfile vim/ftdetect/swig.vim ~/.vim/ftdetect/
|
||||||
|
@ -302,6 +303,7 @@ Bundle vimwiki # Vimwiki
|
||||||
Bundle msanders/snipmate.vim # snipMate
|
Bundle msanders/snipmate.vim # snipMate
|
||||||
Bundle tomtom/tcomment_vim # tComment
|
Bundle tomtom/tcomment_vim # tComment
|
||||||
Bundle bling/vim-airline # Airline is awesome!
|
Bundle bling/vim-airline # Airline is awesome!
|
||||||
|
Bundle bling/vim-bufferline # Display buffers in Airline
|
||||||
|
|
||||||
#######################################################################
|
#######################################################################
|
||||||
# Install tmux & screen config files
|
# Install tmux & screen config files
|
||||||
|
|
|
@ -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
|
Loading…
Reference in New Issue