summary refs log tree commit diff
path: root/.vimrc
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2013-03-12 18:10:03 -0400
committerJune McEnroe <june@causal.agency>2013-03-12 18:10:03 -0400
commit56714bae86092ff1af5f5838686da2286d3ad2ca (patch)
tree4d96d3369550044936b49776ffda451f14ad1360 /.vimrc
parentRemove vim-powerline (diff)
downloadsrc-56714bae86092ff1af5f5838686da2286d3ad2ca.tar.gz
src-56714bae86092ff1af5f5838686da2286d3ad2ca.zip
Switch to powerline
Which I'm not going to bother configuring because it thinks it's all
fancy and for other things that aren't Vim so it stores its config file
in ~/.config which I keep in a different repo and I only want to use it
for Vim so fuck you, Powerline. </rant>
Diffstat (limited to '.vimrc')
-rw-r--r--.vimrc6
1 files changed, 4 insertions, 2 deletions
diff --git a/.vimrc b/.vimrc
index 72b63d23..7177f401 100644
--- a/.vimrc
+++ b/.vimrc
@@ -1,9 +1,12 @@
-set nocp " No child-porn here :P
+set nocp
 
 " Load pathogen
 runtime bundle/vim-pathogen/autoload/pathogen.vim
 call pathogen#infect()
 
+" Load powerline
+set rtp+=~/.vim/bundle/powerline/powerline/bindings/vim
+
 " Remap leader to ,
 noremap \ ,
 let mapleader = ","
@@ -50,7 +53,6 @@ set guioptions-=mrLtT " Disable menus, toolbar, scrollbars
 set guioptions+=c " Disable GUI dialogs
 set guifont=Monospace\ 9
 set browsedir=buffer " Open dialog starts in working directory
-let g:Powerline_symbols = 'fancy'
 
 " Jump to the last cursor position when opening
 au BufReadPost * if &filetype !~ '^git\c' && line("'\"") > 0 && line("'\"") <= line("$")