Skip to content

Commit

Permalink
disable powerline in terminal mode
Browse files Browse the repository at this point in the history
  • Loading branch information
vgod committed Feb 13, 2012
1 parent cab1b35 commit c29dab9
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion vimrc
Expand Up @@ -6,6 +6,12 @@


" For pathogen.vim: auto load all plugins in .vim/bundle

let g:pathogen_disabled = []
if !has('gui_running')
call add(g:pathogen_disabled, 'powerline')
endif

call pathogen#runtime_append_all_bundles()
call pathogen#helptags()

Expand Down Expand Up @@ -263,6 +269,7 @@ endfun
" PLUGIN SETTINGS
"---------------------------------------------------------------------------


" ------- vim-latex - many latex shortcuts and snippets {

" IMPORTANT: win32 users will need to have 'shellslash' set so that latex
Expand Down Expand Up @@ -314,4 +321,3 @@ let g:tagbar_autofocus = 1

" --- PowerLine
" let g:Powerline_symbols = 'fancy' " require fontpatcher

0 comments on commit c29dab9

Please sign in to comment.