-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc
83 lines (66 loc) · 2 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
" Basic settings
set number
set nocompatible " required
set encoding=utf-8
filetype off " required
set t_Co=256
set autoread
" set the commands for split
set splitbelow
set splitright
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>
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" case-insensitive search
set ignorecase
" highlight the search
" set hlsearch
" make code look pretty
let python_highlight_all=1
syntax on " turn on syntax highlighting
set ruler " show row, col in lower-right corner
" edit the indent line
let g:indentLine_defaultGroup = 'SpecialKey'
let g:indentLine_char_list = ['|', '¦', '┆', '┊']
" disable folding configuration
let g:vim_markdown_folding_disabled = 1
" map the nerdtree toggle to the hot key F2
map <F2> :NERDTreeToggle<CR>
" Auto PEP 8 indentation
au BufNewFile,BufRead *.py
\ set tabstop=4 |
\ set softtabstop=4 |
\ set shiftwidth=4 |
\ set textwidth=79 |
\ set expandtab |
\ set autoindent |
\ set fileformat=unix
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')
" let Vundle manage Vundle, required
Plugin 'gmarik/Vundle.vim'
" add all your plugins here (note older versions of Vundle
" used Bundle instead of Plugin)
Plugin 'vim-scripts/indentpython.vim'
Plugin 'Valloric/YouCompleteMe'
Plugin 'vim-syntastic/syntastic'
Plugin 'nvie/vim-flake8'
Plugin 'scrooloose/nerdtree'
Plugin 'jistr/vim-nerdtree-tabs'
Plugin 'tpope/vim-fugitive'
Plugin 'Yggdroot/indentLine'
Plugin 'Lokaltog/powerline', {'rtp': 'powerline/bindings/vim/'}
Plugin 'tell-k/vim-autopep8'
" For markdown files editing
Plugin 'godlygeek/tabular'
Plugin 'plasticboy/vim-markdown'
" For themes
Plugin 'altercation/vim-colors-solarized'
" ...
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required