From 321ecaca67426410316db7db05e6e33809fe1e63 Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Fri, 19 Oct 2012 15:09:38 -0500 Subject: Add powerline --- vim/autoload/Powerline/Matches.vim | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 vim/autoload/Powerline/Matches.vim (limited to 'vim/autoload/Powerline/Matches.vim') 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'), +\ } -- cgit