-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvimrc
234 lines (184 loc) · 7.19 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
"
" DennisCollective's vimrc
" its what gets me through.
"
" to get it to work
" $ ln -s vimrc ~/.vimrc
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Load pathogen bundles
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Order of this incantation is magic, and necessary on debian based distros
" http://www.adamlowe.me/2009/12/vim-destroys-all-other-rails-editors.html
"
filetype off
call pathogen#helptags()
call pathogen#runtime_append_all_bundles()
syntax on
filetype plugin indent on
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Obvious Settings
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
set nocompatible " 'cause this is vim, not vi
set encoding=utf-8
set termencoding=latin1
set fileformat=unix
set history=50 " keep 50 lines of command line history
"turn off arrow keys
noremap <Up> ""
noremap! <Up> <Esc>
noremap <Down> ""
noremap! <Down> <Esc>
noremap <Left> ""
noremap! <Left> <Esc>
noremap <Right> ""
noremap! <Right> <Esc>
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Fun Settings
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
set hidden "you can change buffers without saving, beware when qa! or wqa 'ing !!!!!
"set completefunc " complete functions on C-x C-u - this is crazy
set ruler " show the cursor position all the time
set number " show line numbers
set showmatch " after typing a bracket, briefly show the matching bracket
set hlsearch " highlight the search
set incsearch " do incremental searching - search as word is typed
set showmode " show the current Vim mode
set showcmd " display incomplete commands
set wildmenu " wildmenu surfing
set laststatus=2 " always show the status line
set scrolloff=5 "keep 5 lines more visible when scrolling
let g:ackprg="ack-grep -H --nocolor --nogroup --column"
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Ruby Color Schemes
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
set background=dark
colorscheme vividchalk
"colorscheme aiseered
"colorscheme codeburn
"colorscheme dark-ruby
"colorscheme earthburn
"colorscheme fruity
"colorscheme herald
"colorscheme ir_black
"colorscheme jellybeans
"colorscheme lettuce
"colorscheme moria
"colorscheme norwaytoday
"colorscheme seoul
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Text Formatting
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
syntax enable " enable syntax highlighting
filetype plugin indent on
set backspace=indent,eol,start " backspace over everything in insert mode
set ts=2 " tabs are 2 spaces
set shiftwidth=2 "smart indent
augroup vimrcEx " Basic settings for stuff
" delete all autocommands - I think
au!
au! BufRead,BufNewFile *.json setfiletype json
autocmd FileType text setlocal textwidth=78 " set width 78
" When editing a file, always jump to the last known cursor position.
" Don't do it when the position is invalid or when inside an event handler
" (happens when dropping a file on gvim).
" Also don't do it when the mark is in the first line, that is the default
" position when opening a file.
autocmd BufReadPost *
\ if line("'\"") > 1 && line("'\"") <= line("$") |
\ exe "normal! g`\"" |
\ endif
"autoindent with two spaces, always expand tabs
autocmd BufNewFile,BufRead *.ru setfiletype ruby
autocmd FileType ruby,haml,eruby,yaml set ai sw=2 sts=2 et
au BufNewFile,BufRead *.svg setf svg
autocmd BufRead,BufNewFile Gemfile set filetype=Gemfile
augroup END
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Loopy Stuff
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" In many terminal emulators the mouse works just fine, thus enable it.
if has('mouse')
set mouse=a
endif
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Commands
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
fun! <SID>StripTrailingWhitespaces()
let l = line(".")
let c = col(".")
%s/\s\+$//e
call cursor(l, c)
endfun
autocmd BufWritePre *.rb :call <SID>StripTrailingWhitespaces()
" evaluate ruby scripts with F7 - open vertical window for output
" use shift F7 to close
function! Ruby_eval_vsplit() range
let src = tempname()
let dst = tempname()
execute ": " . a:firstline . "," . a:lastline . "w " . src
execute ":silent ! ruby " . src . " > " . dst . " 2>&1 "
execute ":redraw!"
execute ":vsplit"
execute "normal \<C-W>l"
execute ":e! " . dst
" execute "normal \<C-W>h"
endfunction
let g:rubycomplete_rails = 1
vmap <silent> <F7> :call Ruby_eval_vsplit()<cr>
nmap <silent> <F7> mzggVG<F7>`z
imap <silent> <F7> <ESC><F7>a
map <silent> <S-F7> <C-W>l:bw<cr>
imap <silent> <S-F7> <ESC><S-F7>
" Convenient command to see the difference between the current buffer and the
" file it was loaded from, thus the changes you made.
" Only define it when not defined already
if !exists(":DiffOrig")
command DiffOrig vert new | set bt=nofile | r # | 0d_ | diffthis
\ | wincmd p | diffthis
endif
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Plugin Settings
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
let g:speckyBannerKey = "<leader>b"
let g:speckyQuoteSwitcherKey = "<leader>'"
let g:speckyRunRdocKey = "<leader>r"
let g:speckySpecSwitcherKey = "<leader>x"
let g:speckyRunSpecKey = '<leader>s'
let g:speckyRunSpecCmd = "spec -fs"
let g:speckyRunRdocCmd = "fri -L -f plain"
let g:speckyWindowType = 2
nmap ;f :CommandT<cr>
let g:miniBufExplMapWindowNavVim = 1
let g:miniBufExplMapWindowNavArrows = 1
let g:miniBufExplMapCTabSwitchBufs = 1
let g:miniBufExplModSelTarget = 1
"let loaded_project = 1 "disables Project plugin
" comments
noremap <silent> <C-C> :call CommentLine()<CR>
vnoremap <silent> <C-C> :call RangeCommentLine()<CR>
noremap <silent> <leader>u :call UnCommentLine()<CR>
vnoremap <silent> <leader>u :call RangeUnCommentLine()<CR>
" syntastic
let g:syntastic_enable_signs=1
"let g:syntastic_auto_loc_list=1 "let syntax checker open :Errors
"statusline file - rails - git - warning errors -ruler
set statusline=%<%f\ %h%m%r
set statusline+=%{rails#statusline(0)}
set statusline+=%{fugitive#statusline()}
set statusline+=%#warningmsg#%{SyntasticStatuslineFlag()}%*
set statusline+=%=%-14.(%l,%c%V%)\ %P
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" bindings
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" CTRL-U in insert mode deletes a lot. Use CTRL-G u to first break undo,
" so that you can undo CTRL-U after inserting a line break.
inoremap <C-U> <C-G>u<C-U>
map Q gq " use Q for formatting
map <S-Insert> <MiddleMouse> " Make shift-insert work like in Xterm
map! <S-Insert> <MiddleMouse>
map 'v :sp $HOME/.vimrc<CR><C-W>_ " ,v brings up ~/.vimrc
",V reloads it -- making all changes active (have to save first)
map <silent> 'V :source $HOME/.vimrc<CR>:filetype detect<CR>:exe ":echo 'vimrc reloaded'"<CR>
map <leader>d :execute 'NERDTreeToggle ' . getcwd()<CR> " \d for NERDtree
se backupdir=/var/tmp
se dir=/tmp