forked from humw/My_VIM_conf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc
72 lines (54 loc) · 1.71 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
set nocompatible " required
set encoding=utf-8
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" 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 'scrooloose/nerdtree'
Plugin 'scrooloose/nerdcommenter'
Plugin 'vim-scripts/taglist.vim'
Plugin 'altercation/vim-colors-solarized'
Plugin 'scrooloose/syntastic'
Plugin 'nvie/vim-flake8'
Plugin 'davidhalter/jedi-vim'
" Need to install jedi using pip
Plugin 'vim-scripts/HTML-AutoCloseTag'
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required
au BufNewFile,BufRead *.py
\ set expandtab |
\ set tabstop=4 |
\ set softtabstop=4 |
\ set shiftwidth=4 |
\ set textwidth=79 |
\ set expandtab |
\ set autoindent |
\ set fileformat=unix |
au BufNewFile,BufRead *.js,*.html,*.css
\ set tabstop=2 |
\ set softtabstop=2 |
\ set shiftwidth=2 |
" Enable folding
set foldmethod=indent
set foldlevel=99
nnoremap <space> za
"config for Nerdtree
map <C-n> :NERDTreeToggle<CR>
autocmd bufenter * if (winnr("$") == 1 && exists("b:NERDTreeType") && b:NERDTreeType == "primary") | q | endif
let NERDTreeIgnore = ['\.pyc$']
"make my code look pretty
syntax on
let python_highlight_all=1
set background=dark
colorscheme solarized
"for nerdcommenter"
let mapleader=","
set timeout timeoutlen=1500
"for taglist
nnoremap <silent> <F8> :TlistToggle<CR>