-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.vimrc
51 lines (35 loc) · 992 Bytes
/
.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
set shell=bash
set nocompatible " be iMproved
filetype off " required!
set rtp+=~/.vim/bundle/Vundle.vim/
call vundle#begin()
" let Vundle manage Vundle
" required!
Plugin 'VundleVim/Vundle.vim'
" Lang support
"Plugin 'rosstimson/scala-vim-support'
"Plugin 'vim-scripts/VimClojure'
"Plugin 'motus/pig.vim'
Plugin 'elixir-lang/vim-elixir'
"Plugin 'lambdatoast/elm.vim'
Plugin 'chr4/nginx.vim'
Plugin 'digitaltoad/vim-pug'
Plugin 'vim-erlang/vim-erlang-runtime'
Plugin 'editorconfig/editorconfig-vim'
" Search helpers
Plugin 'rking/ag.vim'
" Common goodies
Plugin 'corntrace/bufexplorer'
Plugin 'Xuyuanp/git-nerdtree'
Plugin 'bling/vim-airline'
Plugin 'junegunn/fzf'
Plugin 'junegunn/fzf.vim'
" Custom configs
Plugin 'savonarola/vimfiles'
" Other common goodies
Plugin 'scrooloose/nerdcommenter'
call vundle#end() " required
filetype plugin indent on " required
if filereadable(glob("~/.vimrc.local"))
source ~/.vimrc.local
endif