-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc
62 lines (47 loc) · 1.31 KB
/
.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
" TODO http://swiety-python.blogspot.com/2013/01/vim-jako-python-ide.html
" Pathogen load
filetype off
call pathogen#infect()
call pathogen#helptags()
filetype plugin indent on
syntax on
set t_Co=256
set background=dark
let g:solarized_termcolors=256
colorscheme solarized
"
" tagbar + ctags + python-ctags (majutsushi/tagbar)
"
nmap <F8> :TagbarToggle<CR>
"
" airline
"
let g:airline_symbols = {}
let g:airline_symbols.space = "\ua0"
let g:airline_powerline_fonts = 1
let g:airline#extensions#tabline#enabled = 1
set laststatus=2
set timeout timeoutlen=3000 ttimeoutlen=100
set ai ruler showmode showmatch wildmenu showcmd ls=2
let g:airline_theme = 'badwolf'
"
" airline + tmux (edkolev/tmuxline.vim)
"
let g:airline#extensions#tmuxline#enabled = 0
"
" pymode
"
"Turn on the run code script <leader>r
let g:pymode_run = 0
" Disable pymode_rope completion for https://github.com/davidhalter/jedi-vim
" to work
let g:pymode_rope = 0
" let g:pymode_rope_lookup_project=0
let g:pymode_lint_ignore = "E501,W"
"Turn on autocompletion when typing a period
"use <Ctrl-Space>
let g:pymode_rope_complete_on_dot = 0
" Automatically fix PEP8 errors in the current buffer:
" noremap <F8> :PymodeLintAuto<CR>
" Setup max line length 'g:pymode_options_max_line_length'
" let g:pymode_options_max_line_length = 79