-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.vimrc
More file actions
48 lines (35 loc) · 816 Bytes
/
.vimrc
File metadata and controls
48 lines (35 loc) · 816 Bytes
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
""""
"" e2l vim
"""
syntax enable
syntax on
set expandtab
set tabstop=4
set shiftwidth=4
set softtabstop=4
set nofoldenable
filetype on
filetype indent on
filetype plugin on
filetype plugin indent on
" vundle
" git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
"
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin 'prabirshrestha/asyncomplete.vim'
Plugin 'prabirshrestha/asyncomplete-tags.vim'
Plugin 'prabirshrestha/async.vim'
Plugin 'hrsh7th/vim-vsnip'
Plugin 'hrsh7th/vim-vsnip-integ'
"""""""""""""""
"""""
" e2l ctags IDE end
"""""
"""""""""""""""
call vundle#end()
source ~/.vim/e2_asyncomplete.vim
source ~/.vim/e2l.vim
autocmd BufNewFile,BufRead *.e2 set filetype=e2
autocmd VimEnter,BufNewFile,BufRead *.e2 call E2lf()