-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_vimrc
More file actions
executable file
·41 lines (34 loc) · 805 Bytes
/
_vimrc
File metadata and controls
executable file
·41 lines (34 loc) · 805 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
39
40
41
let g:fuf_modesDisable=[]
filetype plugin on
filetype indent on
set tabstop=4
set shiftwidth=4
set expandtab
set hlsearch
syntax enable
set nocompatible
set backspace=2
set backspace=indent,eol,start
runtime bundle/vim-pathogen/autoload/pathogen.vim
call pathogen#infect("~/bundle")
call pathogen#helptags()
"colorscheme winter
set cursorline
hi CursorLine term=bold cterm=bold guibg=Grey40
autocmd FileType python set omnifunc=pythoncomplete#Complete
autocmd FileType python compiler pylint
autocmd FileType python set makeprg=(echo\ '[%]';\ pylint\ %)
let g:pylint_show_rate = 0
let g:pylint_onwrite = 0
imap <M-h> <Left>
imap <M-j> <Down>
imap <M-k> <Up>
imap <M-l> <Right>
set nu
set lines=70
set cc=80
set columns=100
set foldmethod=indent
set foldnestmax=10
set nofoldenable
set foldlevel=1