diff options
| author | Ben Beltran <ben@freshout.us> | 2012-10-19 15:09:38 -0500 |
|---|---|---|
| committer | Ben Beltran <ben@freshout.us> | 2012-10-19 15:09:38 -0500 |
| commit | 321ecaca67426410316db7db05e6e33809fe1e63 (patch) | |
| tree | 3811f15c160c6593e84ebfab3994c810a0eeeda5 /vim/autoload/Powerline/Matches.vim | |
| parent | 9041bd938fcce0cf91032c67d529bc21fedeeed3 (diff) | |
Add powerline
Diffstat (limited to 'vim/autoload/Powerline/Matches.vim')
| -rw-r--r-- | vim/autoload/Powerline/Matches.vim | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/vim/autoload/Powerline/Matches.vim b/vim/autoload/Powerline/Matches.vim new file mode 100644 index 0000000..a71f734 --- /dev/null +++ b/vim/autoload/Powerline/Matches.vim @@ -0,0 +1,13 @@ +let g:Powerline#Matches#matches = { + \ 'command_t' : Pl#Match#Add('bufname("%")', 'GoToFile'), + \ 'ft_help' : Pl#Match#Add('&ft' , 'help'), + \ 'ft_man' : Pl#Match#Add('&ft' , 'man'), + \ 'ft_qf' : Pl#Match#Add('&ft' , 'qf'), + \ 'ft_vimpager' : Pl#Match#Add('&ft' , 'vimpager'), + \ 'gundo_preview' : Pl#Match#Add('bufname("%")', '__Gundo_Preview__'), + \ 'gundo_tree' : Pl#Match#Add('bufname("%")', '__Gundo__'), + \ 'lustyexplorer' : Pl#Match#Add('bufname("%")', '\[LustyExplorer-Buffers\]'), + \ 'minibufexplorer' : Pl#Match#Add('bufname("%")', '\-MiniBufExplorer\-'), + \ 'tagbar' : Pl#Match#Add('&ft' , 'tagbar'), + \ 'nerdtree' : Pl#Match#Add('&ft' , 'nerdtree'), +\ } |