-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvimrc
244 lines (190 loc) · 5.28 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
235
236
237
238
239
240
241
242
243
244
set nocompatible
" change the default leader
let mapleader=","
set number
set ruler
" Set encoding
set encoding=utf-8
" Whitespace stuff
set nowrap
set tabstop=2
set shiftwidth=2
set softtabstop=2
set expandtab
set list listchars=tab:\ \ ,trail:·
" Searching
set hlsearch
set incsearch
set ignorecase
set smartcase
" Tab completion
set wildmode=list:longest,list:full
set wildignore+=*.o,*.obj,.git,*.rbc,*.class,.svn,vendor/gems/*
" Status bar
set laststatus=2
" Show column line for 80 characters
" set colorcolumn=80
" NERDTree configuration
let NERDTreeIgnore=['\.rbc$', '\~$']
" CTags
map <Leader>rt :!ctags --extra=+f -R *<CR><CR>
map <C-\> :tnext<CR>
" Remember last location in file
if has("autocmd")
au BufReadPost * if line("'\"") > 0 && line("'\"") <= line("$")
\| exe "normal g'\"" | endif
endif
function s:setupWrapping()
set wrap
set wm=2
set textwidth=72
endfunction
function s:setupMarkup()
"call s:setupWrapping()
set spell
endfunction
" make and python use real tabs
au FileType make set noexpandtab
" Thorfile, Rakefile and Gemfile are Ruby
au BufRead,BufNewFile {Gemfile,Rakefile,Thorfile,config.ru} set ft=ruby
"set json as javascript file type
au BufNewFile,BufRead *.json set ft=javascript
" md, markdown, and mk are markdown and define buffer-local preview
au BufRead,BufNewFile *.{md,markdown,mdown,mkd,mkdn} call s:setupMarkup()
" au BufRead,BufNewFile *.txt call s:setupWrapping()
" allow backspacing over everything in insert mode
set backspace=indent,eol,start
" Opens an edit command with the path of the currently edited file filled in
" Normal mode: <Leader>e
map <Leader>e :e <C-R>=expand("%:p:h") . "/" <CR>
" Opens a tab edit command with the path of the currently edited file filled in
" Normal mode: <Leader>t
map <Leader>te :tabe <C-R>=expand("%:p:h") . "/" <CR>
" Inserts the path of the currently edited file into a command
" Command mode: Ctrl+P
cmap <C-P> <C-R>=expand("%:p:h") . "/" <CR>
" Unimpaired configuration
" Bubble single lines
nmap <C-Up> [e
nmap <C-Down> ]e
" Bubble multiple lines
vmap <C-Up> [egv
vmap <C-Down> ]egv
" Enable syntastic syntax checking
let g:syntastic_enable_signs=1
let g:syntastic_quiet_warnings=1
" Use modeline overrides
set modeline
set modelines=10
" Default color scheme
"color blackpearl2
set background=dark
"color solarized
" Directories for swp files
set backupdir=~/.vim/backup
set directory=~/.vim/backup
" MacVIM shift+arrow-keys behavior (required in .vimrc)
let macvim_hig_shift_movement = 1
" Include user's local vim config
if filereadable(expand("~/.vimrc.local"))
source ~/.vimrc.local
endif
"Run the pathogen stuff
call pathogen#infect()
syntax on
filetype plugin indent on
let g:user_zen_expandabbr_key = '<D-e>'
"Setup the default register
set clipboard="1
"handy mapping for vertical split windows
map <leader>v :vsplit <cr>
"re-select after indenting
vnoremap < <gv
vnoremap > >gv
" Map the escape key to
inoremap jj <Esc>
inoremap jk <Esc>
"remove search hilighting
set nohlsearch
noremap <silent><Leader>/ :noh <CR>
nnoremap <leader><space> :noh<cr>
" make vim regexs behave like normal regexes
nnoremap / /\v
vnoremap / /\v
noremap <F1> <Esc>
"mappings for working with buffers
noremap <C-n> :bn <Enter>
noremap <C-p> :bp <Enter>
noremap <leader>c :enew <Enter>
"Mappings for working with buffers
noremap <leader>n :bn <Enter>
noremap <leader>p :bp <Enter>
noremap <leader>l :ls <Enter>
noremap <leader>b :CtrlPBuffer <Enter>
set hidden
"Customization of ctrl-p plugin
noremap <leader>t :CtrlP <Enter>
noremap <leader>cpc :CtrlPClearCache <Enter>
let g:ctrlp_working_path_mode = 2
let g:ctrlp_working_path_mode = 2
let g:ctrlp_custom_ignore = {
\ 'dir': '\v[\/]\.(git|hg|svn)|bower_components|node_modules$',
\ 'file': '\v\.(exe|so|dll)$',
\ }
"Handy text processing commands
command TrimWhiteSpace %s/\s\+$//
command TitleCase s/\<\(\w\)\(\w*\)\>/\u\1\L\2/g
"Automatically remove trailing whitespace
autocmd FileType ruby,python,javascript,java,sql,scala autocmd BufWritePre <buffer> :%s/\s\+$//e
au BufRead,BufNewFile *.sbt set filetype=scala
"Handy mapping to cd to current files directory
noremap <leader>cd :cd %:p:h <Enter>
"Automatically read file changes from disk
set autoread
"Turn off the any audible or visual bell
set vb t_vb=
"Use Ag instead of ack
let g:ackprg = 'ag --nogroup --nocolor --column'
" Make working with wrap easier
noremap <silent> <Leader>w :call ChooseWrap()<CR>
function ChooseWrap()
let l:choice=confirm("Toggle Wrapping?", "&yes\n&no", 0)
if l:choice==1
if &wrap
call DisableDisplayWrapping()
else
call EnableDisplayWrapping()
endif
endif
endfunction
function EnableDisplayWrapping()
if !&wrap
setlocal wrap
" don't skip wrapped lines
nnoremap j gj
nnoremap k gk
vnoremap j gj
vnoremap k gk
nnoremap <buffer> <Up> gk
nnoremap <buffer> <Down> gj
inoremap <buffer> <Up> <C-O>gk
inoremap <buffer> <Down> <C-O>gj
vnoremap <buffer> <Up> gk
vnoremap <buffer> <Down> gj
endif
endfunction
function DisableDisplayWrapping()
if &wrap
setlocal nowrap
nunmap j
nunmap k
vunmap j
vunmap k
nunmap <buffer> <Up>
nunmap <buffer> <Down>
iunmap <buffer> <Up>
iunmap <buffer> <Down>
vunmap <buffer> <Up>
vunmap <buffer> <Down>
endif
endfunction