-
Notifications
You must be signed in to change notification settings - Fork 0
/
.vimrc
39 lines (31 loc) · 789 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
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
" Bundles
Bundle 'gmarik/vundle'
Bundle 'bling/vim-airline'
Bundle 'rodjek/vim-puppet'
Bundle 'godlygeek/tabular'
Bundle 'Townk/vim-autoclose'
" Chef Hotness
Bundle "MarcWeber/vim-addon-mw-utils"
Bundle "tomtom/tlib_vim"
Bundle "garbas/vim-snipmate"
Bundle "vadv/vim-chef"
Bundle "scrooloose/syntastic"
Bundle "tpope/vim-fugitive"
Bundle "airblade/vim-gitgutter"
Bundle "smerrill/vagrant-vim"
Bundle "elzr/vim-json"
Bundle "csexton/trailertrash.vim"
set number
filetype plugin indent on
syntax on
set shiftwidth=2
set tabstop=2
set expandtab
set cursorline
hi CursorLine cterm=bold
set laststatus=2
let g:airline_powerline_fonts = 1
au BufNewFile,BufRead Gemfile set filetype=ruby
au BufNewFile,BufRead Vagrantfile set filetype=ruby