Created
July 22, 2017 15:08
-
-
Save dhilst/5ab1e836463e9d3dbadeb70103235243 to your computer and use it in GitHub Desktop.
.vimrc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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