Skip to content

Instantly share code, notes, and snippets.

@dhilst
Created July 22, 2017 15:08
Show Gist options
  • Save dhilst/5ab1e836463e9d3dbadeb70103235243 to your computer and use it in GitHub Desktop.
Save dhilst/5ab1e836463e9d3dbadeb70103235243 to your computer and use it in GitHub Desktop.
.vimrc
set nocompatible " be iMproved, required
filetype off " required
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'kevinw/pyflakes-vim'
call vundle#end() " required
set bg=dark
set nohls
set laststatus=2
set autoindent smartindent
filetype plugin on
filetype plugin indent on
set formatoptions+=r
au FileType python setlocal ts=4 sts=4 sw=4 et
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment