File tree Expand file tree Collapse file tree 4 files changed +11
-8
lines changed Expand file tree Collapse file tree 4 files changed +11
-8
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,9 @@ set expandtab
11
11
" 打开插件
12
12
filetype plugin indent on
13
13
14
+ " for SQL
15
+ " Bundle 'dbext.vim'
16
+
14
17
" 根据文件类型设置缩进格式
15
18
au FileType html,javascript setl shiftwidth=2
16
19
au FileType html,javascript setl tabstop=2
@@ -22,28 +25,24 @@ Bundle 'https://github.com/Raimondi/delimitMate.git'
22
25
23
26
" 自动补齐
24
27
if has("ctag")
28
+ Bundle 'taglist.vim'
25
29
if filereadable("tags")
26
30
set tags=tags
27
- Bundle 'taglist.vim'
28
31
endif
29
32
endif
30
33
31
34
if has("cscope")
35
+ Bundle 'https://github.com/vim-scripts/cscope.vim'
32
36
set csprg=/usr/bin/cscope
33
37
set csto=1
34
38
set cst
35
39
set nocsverb
36
40
if filereadable("cscope.out")
37
41
cs add cscope.out
38
- Bundle 'https://github.com/vim-scripts/cscope.vim'
39
42
endif
40
43
set csverb
41
44
endif
42
45
43
46
" 程序解析边栏
44
47
Bundle 'Tagbar'
45
48
nmap <F8> :TagbarToggle<CR>
46
-
47
-
48
-
49
-
Original file line number Diff line number Diff line change 1
1
" python
2
+ Bundle 'Pydiction'
2
3
Bundle 'python.vim'
3
4
" Bundle 'python_fold'
4
5
" pep8 语法检查
5
6
Bundle 'nvie/vim-flake8'
6
7
8
+ let g:pydiction_location = '~/.vim/bundle/Pydiction/complete-dict'
7
9
8
10
9
11
" python 自动补齐
Original file line number Diff line number Diff line change 1
1
Bundle 'derekwyatt/vim-scala'
2
- au FileType scala set syntax=scala
3
- set syntax=scala
Original file line number Diff line number Diff line change @@ -44,9 +44,13 @@ colorscheme desert
44
44
set rtp += ~/.vim/bundle/vundle/
45
45
call vundle#rc ()
46
46
47
+ execute pathogen#infect ()
48
+
47
49
" let Vundle manage Vundle
48
50
" required!
49
51
Bundle ' gmarik/vundle'
52
+ Bundle ' pathogen.vim'
53
+
50
54
51
55
" N3xt Bundles
52
56
Bundle ' mattn/webapi-vim'
You can’t perform that action at this time.
0 commit comments