-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.vimrc
113 lines (93 loc) · 2.39 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
set nocompatible
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" Plugins
" Plugin 'adamlowe/vim-slurper'
" Plugin 'tpope/vim-abolish'
" Plugin 'scrooloose/nerdcommenter'
" Plugin 'vim-scripts/bufkill.vim'
" Plugin 'pangloss/vim-javascript'
Plugin 'gmarik/vundle'
" general vim/commands
Plugin 'tpope/vim-pathogen'
Plugin 'tpope/vim-repeat'
" Plugin 'terryma/vim-multiple-cursors'
" syntax
Plugin 'kchmck/vim-coffee-script'
Plugin 'leshill/vim-json'
Plugin 'tpope/vim-haml'
Plugin 'tpope/vim-markdown'
" Plugin 'tdesikan/vim-tritium'
Plugin 'slim-template/vim-slim'
Plugin 'digitaltoad/vim-jade'
Plugin 'wavded/vim-stylus'
Plugin 'pangloss/vim-javascript'
Plugin 'fatih/vim-go'
Plugin 'kylef/apiblueprint.vim'
Plugin 'rust-lang/rust.vim'
Plugin 'elixir-lang/vim-elixir'
" ruby
Plugin 'tpope/vim-endwise'
Plugin 'vim-ruby/vim-ruby'
Plugin 'rorymckinley/vim-rubyhash'
" clojure
" Plugin 'tpope/vim-fireplace'
" Plugin 'tpope/vim-classpath'
" Plugin 'guns/vim-clojure-static'
" filetype off
" formatting
Plugin 'godlygeek/tabular'
Plugin 'jgdavey/vim-blockle'
runtime! macros/matchit.vim " required by blockle
Plugin 'tpope/vim-commentary'
Plugin 'tpope/vim-speeddating'
Plugin 'tpope/vim-surround'
Plugin 'tpope/vim-unimpaired'
" linting
Plugin 'walm/jshint.vim'
" files/search/buffers
Plugin 'scrooloose/nerdtree'
Plugin 'duff/vim-bufonly'
Plugin 'mileszs/ack.vim'
Plugin 'kien/ctrlp.vim'
Plugin 'ervandew/supertab'
Plugin 'bling/vim-airline'
" tags
Plugin 'tpope/vim-ragtag'
" git
" Plugin 'gregsexton/gitv'
" Plugin 'tpope/vim-git'
Plugin 'tpope/vim-fugitive'
" rails
Plugin 'tpope/vim-bundler'
Plugin 'tpope/vim-rake'
Plugin 'tpope/vim-rails'
" tmux
" Plugin 'benmills/vimux'
" Plugin 'jgdavey/vim-turbux'
" markdown
Plugin 'JamshedVesuna/vim-markdown-preview'
" layout
" Plugin 'junegunn/goyo.vim'
" colorschemes
Plugin 'altercation/vim-colors-solarized'
Plugin 'endel/vim-github-colorscheme'
Plugin 'jgdavey/vim-railscasts'
Plugin 'jpo/vim-railscasts-theme'
Plugin 'therubymug/vim-pyte'
Plugin 'tpope/vim-vividchalk'
Plugin 'croaker/mustang-vim'
Plugin 'wgibbs/vim-irblack'
call vundle#end()
filetype plugin indent on
set visualbell
set guifont=Source\ Code\ Pro\ for\ Powerline:h13
set guioptions-=T guioptions-=e guioptions-=L guioptions-=r
set shell=bash
augroup vimrc
autocmd!
autocmd GuiEnter * set columns=120 lines=70
augroup END
if filereadable(expand('~/.vimrc.local'))
source ~/.vimrc.local
endif