-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathvimrc
53 lines (42 loc) · 1.15 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
set nocompatible
filetype on
filetype off
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
Bundle 'gmarik/vundle'
Bundle 'vim-scripts/pbcopy.vim'
Bundle 'kchmck/vim-coffee-script'
Bundle 'altercation/vim-colors-solarized'
Bundle 'tpope/vim-markdown'
let g:ctrlp_root_markers = ['Gemfile']
Bundle 'kien/ctrlp.vim'
Bundle 'vim-ruby/vim-ruby'
Bundle 'tpope/vim-fugitive'
Bundle 'pangloss/vim-javascript'
Bundle 'VimClojure'
Bundle 'jpalardy/vim-slime'
Bundle 'nono/vim-handlebars'
Bundle 'tpope/vim-surround'
Bundle 'tpope/vim-ragtag'
Bundle 'mattn/emmet-vim'
Bundle 'avakhov/vim-yaml'
Bundle 'Align'
Bundle 'tpope/vim-commentary'
Bundle 'bling/vim-airline'
" From Janus
Bundle 'tpope/vim-unimpaired'
Bundle 'edsono/vim-matchit'
Bundle 'ervandew/supertab'
Bundle 'vim-terraform'
Bundle 'cespare/vim-toml'
"indent guides
let g:indent_guides_enable_on_vim_startup = 1
let g:indent_guides_color_change_percent = 3
let g:indent_guides_start_level = 2
let g:indent_guides_guide_size = 1
" Bundle 'nathanaelkane/vim-indent-guides'
Bundle 'fatih/vim-go'
Bundle 'matschaffer/netrw-v142'
Bundle 'matschaffer/vim-islime2'
Bundle 'matschaffer/vim-matschaffer'
filetype plugin indent on