-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.vimrc
More file actions
52 lines (43 loc) · 971 Bytes
/
Copy path.vimrc
File metadata and controls
52 lines (43 loc) · 971 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
42
43
44
45
46
47
48
49
50
51
52
set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin 'powerline/powerline', {'rtp': 'powerline/bindings/vim/'}
let g:Powerline_symbols = "fancy"
Plugin 'klen/python-mode'
let g:pymode_folding = 0
let g:pymode_rope = 0
let g:pymode_options_max_line_length = 999
Plugin 'tell-k/vim-autopep8'
Plugin 'scrooloose/syntastic'
Plugin 'Valloric/YouCompleteMe'
Plugin 'vim-scripts/indentpython.vim'
call vundle#end()
filetype plugin indent on
set expandtab
set tabstop=4
set softtabstop=4
set shiftwidth=4
set ls=2
set incsearch
syntax on
set nu
set ai
set ruler
set nowrap
set autoread
set cursorline
set clipboard=unnamed
set backspace=2
set laststatus=2
set scrolloff=3
set t_Co=256
set ttymouse=xterm2
set mouse=a
hi LineNr ctermfg=Blue
hi CursorLineNr cterm=bold ctermfg=Green ctermbg=DarkGray
nnoremap <C-J> <C-W><C-J>
nnoremap <C-K> <C-W><C-K>
nnoremap <C-L> <C-W><C-L>
nnoremap <C-H> <C-W><C-H>