Skip to content

Commit

Permalink
[Vim] Powerline updated and moved from gvim to vim
Browse files Browse the repository at this point in the history
  • Loading branch information
Juan Ases García committed Nov 27, 2012
1 parent d1998bf commit e4a8f3a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
4 changes: 1 addition & 3 deletions gvimrc
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,5 @@ set guioptions-=T " no toolbar
set guioptions-=LlRrb " no scrollbar
set showtabline=1 " show tabs only if needed

"Powerline
let g:Powerline_symbols = 'fancy'
set laststatus=2 " Always show the statusline
set guifont=Droid\ Sans\ Mono\ for\ Powerline\ 14
set guifont=Droid\ Sans\ Mono\ 12
2 changes: 1 addition & 1 deletion vim/bundle/vim-powerline
Submodule vim-powerline updated 48 files
+1 −0 .gitignore
+46 −41 README.rst
+122 −505 autoload/Pl.vim
+145 −0 autoload/Pl/Colorscheme.vim
+89 −4 autoload/Pl/Hi.vim
+43 −0 autoload/Pl/Match.vim
+40 −0 autoload/Pl/Mod.vim
+371 −0 autoload/Pl/Parser.vim
+188 −0 autoload/Pl/Segment.vim
+100 −0 autoload/Pl/Theme.vim
+166 −0 autoload/Powerline/Colorschemes/default.vim
+154 −0 autoload/Powerline/Colorschemes/solarized.vim
+195 −0 autoload/Powerline/Colorschemes/solarized16.vim
+195 −0 autoload/Powerline/Colorschemes/solarized256.vim
+141 −0 autoload/Powerline/Functions.vim
+12 −0 autoload/Powerline/Functions/ft_man.vim
+7 −0 autoload/Powerline/Functions/fugitive.vim
+17 −0 autoload/Powerline/Functions/hgrev.vim
+16 −0 autoload/Powerline/Functions/syntastic.vim
+13 −0 autoload/Powerline/Matches.vim
+30 −0 autoload/Powerline/Segments.vim
+20 −0 autoload/Powerline/Segments/ctrlp.vim
+3 −0 autoload/Powerline/Segments/ft_man.vim
+5 −0 autoload/Powerline/Segments/fugitive.vim
+4 −0 autoload/Powerline/Segments/hgrev.vim
+6 −0 autoload/Powerline/Segments/rvm.vim
+5 −0 autoload/Powerline/Segments/syntastic.vim
+6 −0 autoload/Powerline/Segments/tagbar.vim
+5 −0 autoload/Powerline/Segments/virtualenv.vim
+116 −0 autoload/Powerline/Themes/default.vim
+114 −0 autoload/Powerline/Themes/solarized16.vim
+119 −0 autoload/Powerline/Themes/solarized256.vim
+245 −269 doc/Powerline.txt
+22 −2 fontpatcher/fontpatcher
+58 −21 plugin/Powerline.vim
+0 −97 powerline/distinguished.vim
+0 −93 powerline/distinguished/00-default.vim
+0 −27 powerline/distinguished/50-command-t.vim
+0 −21 powerline/distinguished/50-control-p.vim
+0 −43 powerline/distinguished/50-gundo.vim
+0 −27 powerline/distinguished/50-help.vim
+0 −21 powerline/distinguished/50-lusty.vim
+0 −27 powerline/distinguished/50-manpage.vim
+0 −15 powerline/distinguished/50-minibufexplorer.vim
+0 −21 powerline/distinguished/50-syntastic.vim
+0 −21 powerline/distinguished/50-tagbar.vim
+0 −53 powerline/solarized.vim
+0 −72 powerline/solarized/00-default.vim
5 changes: 4 additions & 1 deletion vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ filetype plugin indent on

set nocompatible " Disable vi-compatibility
set encoding=utf-8 " Necessary to show unicode glyphs
set laststatus=2 " Always show the statusline

set expandtab
set tabstop=4
Expand All @@ -15,6 +16,8 @@ set number " Show line numbers
set wildmenu " Better completion
set wildmode=list:longest " BASH style completion


" Forced write as su
cmap w!! w !sudo tee % >/dev/null
"Powerline
let g:Powerline_symbols = 'fancy'

0 comments on commit e4a8f3a

Please sign in to comment.