Skip to content

Instantly share code, notes, and snippets.

@PaulBGD
Created January 7, 2016 04:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PaulBGD/3563f4d9bacb85d28a49 to your computer and use it in GitHub Desktop.
Save PaulBGD/3563f4d9bacb85d28a49 to your computer and use it in GitHub Desktop.
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
Plugin 'itchyny/lightline.vim'
Plugin 'mattn/webapi-vim'
Plugin 'mattn/gist-vim'
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required
let g:lightline = {
\ 'colorscheme': 'wombat',
\ 'component': {
\ 'readonly': '%{&readonly?"":""}',
\ },
\ 'separator': { 'left': '', 'right': '' },
\ 'subseparator': { 'left': '', 'right': '' }
\ }
let g:Powerline_symbols = 'fancy'
set laststatus=2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment