-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvimrc
More file actions
38 lines (33 loc) · 782 Bytes
/
vimrc
File metadata and controls
38 lines (33 loc) · 782 Bytes
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
33
34
35
36
37
38
set nocompatible
filetype off
"set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'gmarik/Vundle.vim'
Plugin 'scrooloose/syntastic'
Plugin 'scrooloose/nerdtree'
Plugin 'nvie/vim-flake8'
Plugin 'altercation/vim-colors-solarized'
"Bundle 'Valloric/YouCompleteMe'
"Plugin 'nvie/vim-flake8'
call vundle#end()
filetype plugin indent on
set nu
set shiftwidth=4
set tabstop=4
set softtabstop=4
set textwidth=79
set expandtab
set autoindent
set smartindent
set fileformat=unix
set smarttab
let python_highlight_all=1
syntax enable
set encoding=utf-8
set background=dark
colorscheme solarized
set t_Co=16
set showmatch
au FileType py set textwidth=79
"au BufRead,BufNewFile *.py,*.pyw,*.c,*.h match BadWhitespace /\s\+$/