-
Notifications
You must be signed in to change notification settings - Fork 0
/
.vimrc
32 lines (25 loc) · 971 Bytes
/
.vimrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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'
Plugin 'vim-scripts/indentpython.vim' " Helps in indentation
Plugin 'nvie/vim-flake8' " PEP8 standards checking
Plugin 'kien/ctrlp.vim' " Search files
Plugin 'Yggdroot/indentLine' " indent line
" add all your plugins here (note older versions of Vundle
" used Bundle instead of Plugin)
" ...
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required
set number " show line number
colors default " set color to zenburn
let python_highlight_all=1
syntax on
" match parenthesis/ brackets
set encoding=utf-8 " UTF8 Support