Skip to content

Instantly share code, notes, and snippets.

@prabhakhar
Last active March 22, 2018 19:46
Show Gist options
  • Save prabhakhar/c80c75ef0db91eed03fd to your computer and use it in GitHub Desktop.
Save prabhakhar/c80c75ef0db91eed03fd 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()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')
" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
Plugin 'tpope/vim-fugitive'
Plugin 'scrooloose/syntastic'
Plugin 'tpope/vim-surround'
Plugin 'altercation/vim-colors-solarized'
Plugin 'vim-airline/vim-airline'
Plugin 'dracula/vim'
Plugin 'morhetz/gruvbox'
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required
set hlsearch
syntax on
set background=dark
"set background=light
if has("gui_running")
"set guifont=Powerline\ Consolas:h16
set guifont=Inconsolata\ for\ Powerline:h14
set background=dark
colorscheme dracula
let g:airline_powerline_fonts = 1
set linespace=2
set guioptions-=r "no scrollbar
set lines=90
endif
let g:airline_powerline_fonts = 1
set laststatus=2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment