forked from aminzai/vimrc
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy path_vimrc
98 lines (85 loc) · 3.07 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
" =============================================================================
" Author: Chu-Siang Lai / chusiang (at) drx.tw
" Blog: http://note.drx.tw
" Filename: _vimrc
" Modified: 2023-08-27 14:40
" Description: main vimrc.
" Reference: https://github.com/chusiang/vimrc/blob/master/_vimrc
" =============================================================================
" dein Scripts
" ------------
if &compatible
set nocompatible " Be iMproved
endif
" Required:
set runtimepath+=$HOME/.vim/bundle/repos/github.com/Shougo/dein.vim
" Required:
if dein#load_state('$HOME/.vim/bundle')
call dein#begin('$HOME/.vim/bundle')
" Let dein manage dein
" Required:
call dein#add('$HOME/.vim/bundle/repos/github.com/Shougo/dein.vim')
" Add or remove your plugins here
" -------------------------------
" call dein#add('Shougo/vimshell.vim')
" call dein#add('flazz/vim-colorschemes')
" call dein#add('terryma/vim-multiple-cursors')
" call dein#add('vadv/vim-chef')
" call dein#add('vim-scripts/BBCode--Dahn')
" call dein#add('vim-scripts/VST')
call dein#add('Glench/Vim-Jinja2-Syntax')
call dein#add('Joorem/vim-haproxy')
call dein#add('Valloric/YouCompleteMe', {'build': './install.py'})
call dein#add('Xuyuanp/nerdtree-git-plugin')
call dein#add('Yggdroot/indentLine')
call dein#add('chr4/nginx.vim')
call dein#add('chriskempson/base16-vim')
call dein#add('chusiang/vim-sdcv')
call dein#add('chusiang/vimcdoc-tw')
call dein#add('dawikur/base16-vim-airline-themes')
call dein#add('easymotion/vim-easymotion')
call dein#add('editorconfig/editorconfig-vim')
call dein#add('ekalinin/Dockerfile.vim')
call dein#add('elzr/vim-json')
call dein#add('gko/vim-coloresque')
call dein#add('godlygeek/tabular')
call dein#add('hail2u/vim-css3-syntax')
call dein#add('honza/vim-snippets')
call dein#add('itspriddle/vim-jquery')
call dein#add('kien/ctrlp.vim')
call dein#add('majutsushi/tagbar')
call dein#add('mattn/calendar-vim')
call dein#add('mileszs/ack.vim')
call dein#add('othree/html5.vim')
call dein#add('othree/yajs.vim')
call dein#add('pearofducks/ansible-vim')
call dein#add('plasticboy/vim-markdown')
call dein#add('rizzatti/dash.vim')
call dein#add('scrooloose/nerdtree')
call dein#add('shime/vim-livedown')
call dein#add('sirver/ultisnips')
call dein#add('timcharper/textile.vim')
call dein#add('tmux-plugins/vim-tmux')
call dein#add('tpope/vim-ragtag')
call dein#add('tpope/vim-surround')
call dein#add('vim-airline/vim-airline')
call dein#add('vim-scripts/EnhCommentify.vim')
call dein#add('vim-scripts/matchit.zip')
call dein#add('vim-scripts/mru.vim')
call dein#add('vim-syntastic/syntastic')
" Required:
call dein#end()
call dein#save_state()
endif
" Required:
filetype plugin indent on
syntax enable
" If you want to install not installed plugins on startup.
"if dein#check_install()
" call dein#install()
"endif
" Read other vim script, if available
" -----------------------------------
for CONFIG in split(glob('~/.vim/*.vim'), '\n')
exe 'source' CONFIG
endfor