Skip to content

Instantly share code, notes, and snippets.

@dstritzel
Last active August 29, 2015 14:15
Show Gist options
  • Save dstritzel/9e050b011de94b83edd9 to your computer and use it in GitHub Desktop.
Save dstritzel/9e050b011de94b83edd9 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 'gmarik/Vundle.vim'
" PUT BUNDLES HERE
Plugin 'Lokaltog/powerline', {'rtp': 'powerline/bindings/vim/'}
Plugin 'scrooloose/nerdtree'
" Plugin 'davidhalter/jedi-vim'
Plugin 'fatih/vim-go'
Plugin 'klen/python-mode'
Plugin 'ervandew/supertab'
Plugin 'ragtag.vim'
Plugin 'surround.vim'
Plugin 'matchit.zip'
Plugin 'rest.vim'
Plugin 'mattn/webapi-vim'
Plugin 'mattn/gist-vim'
Plugin 'xolox/vim-misc'
Plugin 'xolox/vim-session'
" 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
"
" Brief help
" :PluginList - lists configured plugins
" :PluginInstall - installs plugins; append `!` to update or just :PluginUpdate
" :PluginSearch foo - searches for foo; append `!` to refresh local cache
" :PluginClean - confirms removal of unused plugins; append `!` to auto-approve removal
"
" see :h vundle for more details or wiki for FAQ
" Put your non-Plugin stuff after this line
"
filetype plugin indent on
" Powerline setup
set guifont=DejaVu\ Sans\ Mono\ for\ Powerline\ 9
set laststatus=2
" NerdTree Setup
" autocmd StdinReadPre * let s:std_in=1
" autocmd VimEnter * if argc() == 0 && !exists("s:std_in") | NERDTree | endif
map <F2> :NERDTreeToggle<CR>
" Python Mode stuff
let g:pymode_virtualenv = 1
let g:pymode_lint = 1
let g:pymode_folding = 0
" Session Settings
let g:session_autosave = 'yes'
let g:session_autosave_periodic = 1
syntax on
autocmd FileType python setlocal completeopt-=preview
highlight Pmenu ctermbg=238 gui=bold
set background=dark
colorscheme delek
set mouse=a
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment