Skip to content

Instantly share code, notes, and snippets.

@GEOFBOT
Last active July 5, 2016 15:15
Show Gist options
  • Save GEOFBOT/b0e8877e791b2e27fe0d913dac480269 to your computer and use it in GitHub Desktop.
Save GEOFBOT/b0e8877e791b2e27fe0d913dac480269 to your computer and use it in GitHub Desktop.
.vimrc
set nocompatible " be iMproved, required
filetype off " required
set shell=/bin/bash " Fish shell
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
set number
" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
Plugin 'tobyS/pdv'
Plugin 'sickill/vim-monokai'
"Plugin 'tomasr/molokai'
Plugin 'rking/ag.vim'
Plugin 'scrooloose/nerdtree'
Plugin 'vim-airline/vim-airline'
Plugin 'vim-airline/vim-airline-themes'
Plugin 'Yavor-Ivanov/airline-monokai-subtle.vim'
Plugin 'tpope/vim-fugitive'
Plugin 'vim-scripts/DeleteTrailingWhitespace'
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required
" To ignore plugin indent changes, instead use:
"filetype plugin on
let g:airline#extensions#tabline#enabled = 1
let g:airline_powerline_fonts = 1
let g:airline_theme = 'monokai_subtle'
set laststatus=2
set t_Co=256
let g:DeleteTrailingWhitespace = 1
let g:DeleteTrailingWhitespace_Action = 'delete'
colorscheme monokai
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment