-
Notifications
You must be signed in to change notification settings - Fork 165
Expand file tree
/
Copy path.vimrc.mini
More file actions
61 lines (54 loc) · 1.65 KB
/
.vimrc.mini
File metadata and controls
61 lines (54 loc) · 1.65 KB
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
set nocompatible " be iMproved, required
filetype off " required
let cwd = getcwd()
let g:ex_tools_path = cwd.'/vimfiles/tools/'
exec 'set rtp+=' . fnameescape ( cwd . '/vimfiles/bundle/Vundle.vim/' )
call vundle#rc(cwd.'/vimfiles/bundle/')
" =======================================================
Plugin 'gmarik/Vundle.vim'
Plugin 'exvim/ex-config'
Plugin 'exvim/ex-utility'
Plugin 'exvim/ex-aftercolors'
Plugin 'exvim/ex-vimentry'
Plugin 'exvim/ex-project'
Plugin 'exvim/ex-gsearch'
Plugin 'exvim/ex-tags'
Plugin 'exvim/ex-symbol'
Plugin 'exvim/ex-cscope'
Plugin 'exvim/ex-qfix'
Plugin 'exvim/ex-hierarchy'
Plugin 'exvim/ex-taglist'
Plugin 'exvim/ex-autocomplpop'
Plugin 'exvim/ex-showmarks'
Plugin 'exvim/ex-visincr'
Plugin 'exvim/ex-matchit'
Plugin 'exvim/ex-easyhl'
Plugin 'exvim/ex-searchcompl'
Plugin 'exvim/ex-colorschemes'
Plugin 'altercation/vim-colors-solarized'
Plugin 'morhetz/gruvbox'
Plugin 'kien/ctrlp.vim'
Plugin 'tpope/vim-fugitive'
Plugin 'tpope/vim-surround'
Plugin 'scrooloose/nerdtree'
Plugin 'scrooloose/nerdcommenter'
Plugin 'scrooloose/syntastic'
Plugin 'mbbill/undotree'
Plugin 'godlygeek/tabular'
Plugin 'Lokaltog/vim-easymotion'
Plugin 'vim-scripts/LargeFile'
Plugin 'exvim/ex-cref'
Plugin 'ntpeters/vim-better-whitespace'
Plugin 'exvim/ex-typescript'
Plugin 'mattn/emmet-vim'
Plugin 'Yggdroot/indentLine'
Plugin 'pangloss/vim-javascript'
Plugin 'kchmck/vim-coffee-script'
Plugin 'exvim/ex-indenthtml.vim'
Plugin 'hail2u/vim-css3-syntax'
Plugin 'digitaltoad/vim-jade'
Plugin 'groenewege/vim-less'
Plugin 'wavded/vim-stylus'
Plugin 'plasticboy/vim-markdown'
" =======================================================
filetype plugin indent on " required