aboutsummaryrefslogtreecommitdiff
path: root/vim/autoload/Powerline/Themes/default.vim
diff options
context:
space:
mode:
authorBen Beltran <ben@nsovocal.com>2013-04-16 01:22:46 -0500
committerBen Beltran <ben@nsovocal.com>2013-04-16 01:22:46 -0500
commit577b791c99b07471ec27e1f9c09e756a6f1da0cd (patch)
tree60daaa41542b03720931b5eace3b55abf57cf515 /vim/autoload/Powerline/Themes/default.vim
parent07c693d23065b9371ba3aa713e8fd4b0e9874c9d (diff)
Use the newer powerline.
Diffstat (limited to 'vim/autoload/Powerline/Themes/default.vim')
-rw-r--r--vim/autoload/Powerline/Themes/default.vim114
1 files changed, 0 insertions, 114 deletions
diff --git a/vim/autoload/Powerline/Themes/default.vim b/vim/autoload/Powerline/Themes/default.vim
deleted file mode 100644
index 75106eb..0000000
--- a/vim/autoload/Powerline/Themes/default.vim
+++ /dev/null
@@ -1,114 +0,0 @@
-let g:Powerline#Themes#default#theme = Pl#Theme#Create(
- \ Pl#Theme#Buffer(''
- \ , 'mode_indicator'
- \ , 'fugitive:branch'
- \ , 'fileinfo'
- \ , 'syntastic:errors'
- \ , Pl#Segment#Truncate()
- \ , 'cfi:current_function'
- \ , Pl#Segment#Split()
- \ , 'rvm:string'
- \ , 'virtualenv:statusline'
- \ , 'fileformat'
- \ , 'fileencoding'
- \ , 'filetype'
- \ , 'scrollpercent'
- \ , 'lineinfo'
- \ ),
- \
- \ Pl#Theme#Buffer('command_t'
- \ , ['static_str.name', 'Command-T']
- \ , Pl#Segment#Truncate()
- \ , Pl#Segment#Split()
- \ , ['raw.line', '%10(Match #%l%)']
- \ ),
- \
- \ Pl#Theme#Buffer('gundo', Pl#Match#Any('gundo_tree')
- \ , ['static_str.name', 'Gundo']
- \ , ['static_str.buffer', 'Undo tree']
- \ , Pl#Segment#Truncate()
- \ , Pl#Segment#Split()
- \ ),
- \
- \ Pl#Theme#Buffer('gundo', Pl#Match#Any('gundo_preview')
- \ , ['static_str.name', 'Gundo']
- \ , ['static_str.buffer', 'Diff preview']
- \ , Pl#Segment#Truncate()
- \ , Pl#Segment#Split()
- \ ),
- \
- \ Pl#Theme#Buffer('ft_help'
- \ , ['static_str.name', 'Help']
- \ , 'filename'
- \ , Pl#Segment#Truncate()
- \ , Pl#Segment#Split()
- \ , 'scrollpercent'
- \ ),
- \
- \ Pl#Theme#Buffer('ft_vimpager'
- \ , ['static_str.name', 'Pager']
- \ , 'filename'
- \ , Pl#Segment#Truncate()
- \ , Pl#Segment#Split()
- \ , 'scrollpercent'
- \ ),
- \
- \ Pl#Theme#Buffer('lustyexplorer'
- \ , ['static_str.name', 'LustyExplorer']
- \ , ['static_str.buffer', 'Buffer list']
- \ , Pl#Segment#Truncate()
- \ , Pl#Segment#Split()
- \ ),
- \
- \ Pl#Theme#Buffer('ft_man'
- \ , ['static_str.name', 'Man page']
- \ , 'filename'
- \ , Pl#Segment#Truncate()
- \ , Pl#Segment#Split()
- \ , 'scrollpercent'
- \ ),
- \
- \ Pl#Theme#Buffer('minibufexplorer'
- \ , ['static_str.name', 'MiniBufExplorer']
- \ , Pl#Segment#Truncate()
- \ , Pl#Segment#Split()
- \ ),
- \
- \ Pl#Theme#Buffer('ft_qf'
- \ , ['static_str.name', 'Quickfix']
- \ , Pl#Segment#Truncate()
- \ , Pl#Segment#Split()
- \ ),
- \
- \ Pl#Theme#Buffer('tagbar'
- \ , ['static_str.name', 'Tagbar']
- \ , ['static_str.buffer', 'Tree']
- \ , Pl#Segment#Truncate()
- \ , Pl#Segment#Split()
- \ ),
- \
- \ Pl#Theme#Buffer('ctrlp', Pl#Theme#Callback('ctrlp_main', 'if ! exists("g:ctrlp_status_func") | let g:ctrlp_status_func = {} | endif | let g:ctrlp_status_func.main = "%s"')
- \ , 'ctrlp:prev'
- \ , 'ctrlp:item'
- \ , 'ctrlp:next'
- \ , 'ctrlp:marked'
- \ , Pl#Segment#Truncate()
- \ , Pl#Segment#Split()
- \ , 'ctrlp:focus'
- \ , 'ctrlp:byfname'
- \ , 'pwd'
- \ ),
- \
- \ Pl#Theme#Buffer('ctrlp', Pl#Theme#Callback('ctrlp_prog', 'if ! exists("g:ctrlp_status_func") | let g:ctrlp_status_func = {} | endif | let g:ctrlp_status_func.prog = "%s"')
- \ , 'ctrlp:count'
- \ , Pl#Segment#Truncate()
- \ , Pl#Segment#Split()
- \ , 'pwd'
- \ ),
- \
- \ Pl#Theme#Buffer('nerdtree'
- \ , ['raw.name', '%{expand("%:p:h")}']
- \ , Pl#Segment#Truncate()
- \ , Pl#Segment#Split()
- \ )
-\ )