Advertisement
Guest User

.vimrc

a guest
Mar 31st, 2015
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 0.72 KB | None | 0 0
  1. set nocompatible              " be iMproved, required
  2. filetype off                  " required
  3.  
  4. " set the runtime path to include Vundle and initialize
  5. set rtp+=~/.vim/bundle/Vundle.vim
  6. call vundle#begin()
  7. " alternatively, pass a path where Vundle should install plugins
  8. "call vundle#begin('~/some/path/here')
  9.  
  10. " let Vundle manage Vundle, required
  11. Plugin 'gmarik/Vundle.vim'
  12.  
  13. Plugin 'kien/ctrlp.vim'
  14. Plugin 'Lokaltog/powerline', {'rtp': 'powerline/bindings/vim/'}
  15. Plugin 'scrooloose/nerdtree'
  16.  
  17. " powerline font configuration
  18. set guifont=Inconsolata\ for\ Powerline:h15
  19. let g:Powerline_symbols = 'fancy'
  20. set encoding=utf-8
  21. set t_Co=256
  22. set fillchars+=stl:\ ,stlnc:\
  23. set term=xterm-256color
  24. set termencoding=utf-8
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement