Last active
December 30, 2019 10:20
-
-
Save hbruno/19bf30860754fbbd8046c63e2579b8c2 to your computer and use it in GitHub Desktop.
VIM config
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
" https://realpython.com/vim-and-python-a-match-made-in-heaven/ | |
set nocompatible " 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 'gmarik/Vundle.vim' | |
" add all your plugins here (note older versions of Vundle | |
" used Bundle instead of Plugin) | |
" ... | |
Plugin 'vim-scripts/indentpython.vim' | |
Plugin 'vim-syntastic/syntastic' | |
Plugin 'vim-airline/vim-airline' | |
Plugin 'nvie/vim-flake8' | |
Plugin 'jpo/vim-railscasts-theme' | |
" All of your Plugins must be added before the following line | |
call vundle#end() " required | |
filetype plugin indent on " required | |
let python_highlight_all=1 | |
set encoding=utf-8 | |
set nu | |
let g:airline#extensions#tabline#enabled = 1 | |
syntax on | |
colorscheme railscasts |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment