forked from wilsonwc/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvimrc
570 lines (400 loc) · 18.3 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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
" ----------------------------------------------------------------------
" | General Settings |
" ----------------------------------------------------------------------
set nocompatible " Don't make vim vi-compatibile
syntax on " Enable syntax highlighting
if has("autocmd")
filetype plugin indent on
" │ │ └──── Enable file type detection
" │ └───────── Enable loading of indent file
" └─────────────── Enable loading of plugin files
endif
set autoindent " Copy indent to the new line
set backspace=indent " ┐
set backspace+=eol " │ Allow `backspace`
set backspace+=start " ┘ in insert mode
set backupdir=~/.vim/backups " Set directory for backup files
set backupskip=/tmp/* " ┐ Don't create backups
set backupskip+=/private/tmp/* " ┘ for certain files
set clipboard=unnamed " ┐
" │ Use the system clipboard
if has("unnamedplus") " │ as the default register
set clipboard+=unnamedplus " │
endif " ┘
set cpoptions+=$ " When making a change, don't
" redisplay the line, and instead,
" put a `$` sign at the end of
" the changed text
set colorcolumn=73 " Highlight certain column(s)
set cursorline " Highlight the current line
set directory=~/.vim/swaps " Set directory for swap files
set encoding=utf-8 nobomb " Use UTF-8 without BOM
set history=5000 " Increase command line history
set hlsearch " Enable search highlighting
set ignorecase " Ignore case in search patterns
set incsearch " Highlight search pattern as
" it is being typed
set laststatus=2 " Always show the status line
set lazyredraw " Do not redraw the screen while
" executing macros, registers
" and other commands that have
" not been typed
set listchars=tab:▸\ " ┐
set listchars+=trail:· " │ Use custom symbols to
set listchars+=eol:↴ " │ represent invisible characters
set listchars+=nbsp:_ " ┘
set magic " Enable extended regexp
set mousehide " Hide mouse pointer while typing
set noerrorbells " Disable error bells
set nojoinspaces " When using the join command,
" only insert a single space
" after a `.`, `?`, or `!`
set nostartofline " Kept the cursor on the same column
set number " Show line number
set numberwidth=5 " Increase the minimal number of
" columns used for the `line number`
set report=0 " Report the number of lines changed
set ruler " Show cursor position
set scrolloff=5 " When scrolling, keep the cursor
" 5 lines below the top and 5 lines
" above the bottom of the screen
set shortmess=aAItW " Avoid all the hit-enter prompts
set showcmd " Show the command being typed
set showmode " Show current mode
set spelllang=en_us " Set the spellchecking language
set smartcase " Override `ignorecase` option
" if the search pattern contains
" uppercase characters
set synmaxcol=2500 " Limit syntax highlighting (this
" avoids the very slow redrawing
" when files contain long lines)
set tabstop=4 " ┐
set softtabstop=4 " │ Set global <TAB> settings
set shiftwidth=4 " │ http://vimcasts.org/e/2
set expandtab " ┘
set ttyfast " Enable fast terminal connection
set undodir=~/.vim/undos " Set directory for undo files
set undofile " Automatically save undo history
set virtualedit=all " Allow cursor to be anywhere
set visualbell " ┐
set noerrorbells " │ Disable beeping and window flashing
set t_vb= " ┘ https://vim.wikia.com/wiki/Disable_beeping
set wildmenu " Enable enhanced command-line
" completion (by hitting <TAB> in
" command mode, Vim will show the
" possible matches just above the
" command line with the first
" match highlighted)
set winminheight=0 " Allow windows to be squashed
" ----------------------------------------------------------------------
" | Plugins |
" ----------------------------------------------------------------------
" Use Vundle to manage the vim plugins
" https://github.com/gmarik/Vundle.vim
" Disable file type detection
" (required by Vundle)
filetype off
" Set the runtime path to include Vundle
set runtimepath+=~/.vim/plugins/Vundle.vim
" Initialize Vundle and specify the path
" where the plugins should be installed
call vundle#begin("~/.vim/plugins")
" Let Vundle manage Vundle (this is important!)
Plugin 'gmarik/Vundle.vim'
Plugin 'altercation/vim-colors-solarized'
Plugin 'ap/vim-css-color'
Plugin 'chrisbra/unicode.vim'
Plugin 'editorconfig/editorconfig-vim'
Plugin 'godlygeek/tabular'
Plugin 'jelera/vim-javascript-syntax'
Plugin 'kien/ctrlp.vim'
Plugin 'marijnh/tern_for_vim'
Plugin 'mattn/emmet-vim'
Plugin 'mattn/webapi-vim'
Plugin 'nathanaelkane/vim-indent-guides'
Plugin 'othree/html5.vim'
Plugin 'plasticboy/vim-markdown'
Plugin 'raimondi/delimitmate'
Plugin 'scrooloose/nerdtree'
Plugin 'scrooloose/syntastic'
Plugin 'shougo/neocomplcache.vim'
Plugin 'shougo/neosnippet'
Plugin 'shougo/neosnippet-snippets'
Plugin 'shutnik/jshint2.vim'
Plugin 'tomtom/tcomment_vim'
Plugin 'tpope/vim-commentary'
Plugin 'tpope/vim-fugitive'
Plugin 'tpope/vim-repeat'
Plugin 'tpope/vim-surround'
call vundle#end()
filetype on
" ----------------------------------------------------------------------
" | Plugins - Emmet |
" ----------------------------------------------------------------------
" Redefine trigger key for Emmet
" http://docs.emmet.io/cheat-sheet/
let g:user_emmet_leader_key="<C-E>"
" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
" Load custom Emmet snippets
" http://docs.emmet.io/customization/snippets/
let g:user_emmet_settings = webapi#json#decode(join(readfile(expand("~/.vim/snippets/emmet.json")), "\n"))
" ----------------------------------------------------------------------
" | Plugins - Indent Guides |
" ----------------------------------------------------------------------
" Set custom indent colors
" https://github.com/nathanaelkane/vim-indent-guides#setting-custom-indent-colors
let g:indent_guides_auto_colors = 0
autocmd VimEnter,Colorscheme * :hi IndentGuidesOdd
\ guibg=#00323D
\ ctermbg=Magenta
autocmd VimEnter,Colorscheme * :hi IndentGuidesEven
\ guibg=#073642
\ ctermbg=DarkMagenta
" ----------------------------------------------------------------------
" | Plugins - Markdown |
" ----------------------------------------------------------------------
" Disable Folding
" https://github.com/plasticboy/vim-markdown#disable-folding
let g:vim_markdown_folding_disabled=1
" ----------------------------------------------------------------------
" | Plugins - NeoComplCache |
" ----------------------------------------------------------------------
" Enable `neocomplcache` by default
" https://github.com/Shougo/neocomplcache.vim#installation
let g:neocomplcache_enable_at_startup=1
" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
" Make `<TAB>` autocomplete
inoremap <expr><TAB> pumvisible() ? "\<C-n>" : "\<TAB>"
" ----------------------------------------------------------------------
" | Plugins - Syntastic |
" ----------------------------------------------------------------------
" Inform Syntastic which checkers to use based on file types
" https://github.com/scrooloose/syntastic#3-faq
let g:syntastic_html_checkers = [ "jshint" ]
let g:syntastic_javascript_checkers = [ "jshint" ]
" Disable syntax checking by default
let g:syntastic_mode_map = {
\ "active_filetypes": [],
\ "mode": "passive",
\ "passive_filetypes": []
\}
" ----------------------------------------------------------------------
" | Helper Functions |
" ----------------------------------------------------------------------
function! GetGitBranchName()
let branchName = ""
if exists("g:loaded_fugitive")
let branchName = "[" . fugitive#head() . "]"
endif
return branchName
endfunction
" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
function! StripTrailingWhitespaces()
" Save last search and cursor position
let searchHistory = @/
let cursorLine = line(".")
let cursorColumn = col(".")
" Strip trailing whitespaces
%s/\s\+$//e
" Restore previous search history and cursor position
let @/ = searchHistory
call cursor(cursorLine, cursorColumn)
endfunction
" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
function! ToggleLimits()
" [51,73]
" - git commit message
" http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html
" [81]
" - general use
if ( &colorcolumn == "73" )
set colorcolumn+=51,81
else
set colorcolumn-=51,81
endif
endfunction
" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
function! ToggleRelativeLineNumbers()
if ( &relativenumber == 1 )
set number
else
set relativenumber
endif
endfunction
" ----------------------------------------------------------------------
" | Automatic Commands |
" ----------------------------------------------------------------------
if has("autocmd")
" Autocommand Groups
" http://learnvimscriptthehardway.stevelosh.com/chapters/14.html
" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
" Automatically reload the configurations from the
" `~/.vimrc` and `~/.gvimrc` files whenever they are changed
augroup auto_reload_vim_configs
autocmd!
autocmd BufWritePost vimrc source $MYVIMRC
if has("gui_running")
autocmd BufWritePost gvimrc source $MYGVIMRC
endif
augroup END
" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
" Use relative line numbers
" http://jeffkreeftmeijer.com/2012/relative-line-numbers-in-vim-for-super-fast-movement/
augroup relative_line_numbers
autocmd!
" Automatically switch to absolute line numbers when vim loses focus
autocmd FocusLost * :set number
" Automatically switch to relative line numbers when vim gains focus
autocmd FocusGained * :set relativenumber
" Automatically switch to absolute line numbers when vim is in insert mode
autocmd InsertEnter * :set number
" Automatically switch to relative line numbers when vim is in normal mode
autocmd InsertLeave * :set relativenumber
augroup END
" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
" Automatically strip the trailing whitespaces when files are saved
augroup strip_trailing_whitespaces
" List of file types that use the trailing whitespaces:
"
" * Markdown
" https://daringfireball.net/projects/markdown/syntax#block
let excludedFileTypes = [
\ "markdown",
\ "mkd.markdown"
\]
" Only strip the trailing whitespaces if the file type is
" not in the excluded file types list
autocmd!
autocmd BufWritePre * if index(excludedFileTypes, &ft) < 0 | :call StripTrailingWhitespaces()
augroup END
endif
" ----------------------------------------------------------------------
" | Color Scheme |
" ----------------------------------------------------------------------
set t_Co=256 " Enable full-color support
set background=dark " Use colors that look good
" on a dark background
" Set custom configurations for when the
" Solarized theme is used from vim's Terminal mode
" http://ethanschoonover.com/solarized/vim-colors-solarized#advanced-configuration
if !has("gui_running")
let g:solarized_contrast = "high"
let g:solarized_termcolors = 256
let g:solarized_termtrans = 1
let g:solarized_visibility = "high"
endif
colorscheme solarized " Use custom color scheme
" ----------------------------------------------------------------------
" | Key Mappings |
" ----------------------------------------------------------------------
" Use a different mapleader (default is "\")
let mapleader = ","
" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
" [,* ] Search and replace the word under the cursor
nmap <leader>* :%s/\<<C-r><C-w>\>//<Left>
" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
" [,cc] Toggle code comments
" https://github.com/tomtom/tcomment_vim
map <leader>cc :TComment<CR>
" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
" [,cr] Calculate result
" http://vimcasts.org/e/56
nmap <leader>cr 0yt=A<C-r>=<C-r>"<CR><Esc>
" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
" [,cs] Clear search
map <leader>cs <Esc>:noh<CR>
" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
" [,h ] JSHint the code
" https://github.com/Shutnik/jshint2.vim
nmap <leader>h :JSHint<CR>
" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
" [,l ] Toggle `set list`
nmap <leader>l :set list!<CR>
" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
" [,n ] Toggle `set relativenumber`
nmap <leader>n :call ToggleRelativeLineNumbers()<CR>
" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
" [,ss] Strip trailing whitespace
nmap <leader>ss :call StripTrailingWhitespaces()<CR>
" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
" [,t ] Toggle NERDTree
map <leader>t :NERDTreeToggle<CR>
" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
" [,ti] Toggle indent
nmap <leader>ti <Plug>IndentGuidesToggle
" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
" [,tl] Toggle show limits
nmap <leader>tl :call ToggleLimits()<CR>
" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
" [,ts] Toggle Syntastic
nmap <leader>ts :SyntasticToggleMode<CR>
" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
" [,v ] Make the opening of the `.vimrc` file easier
nmap <leader>v :vsp $MYVIMRC<CR>
" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
" [,W ] Sudo write
map <leader>W :w !sudo tee %<CR>
" ----------------------------------------------------------------------
" | Status Line |
" ----------------------------------------------------------------------
" Terminal types:
"
" 1) term (normal terminals, e.g.: vt100, xterm)
" 2) cterm (color terminals, e.g.: MS-DOS console, color-xterm)
" 3) gui (GUIs)
highlight ColorColumn
\ term=NONE
\ cterm=NONE ctermbg=237 ctermfg=NONE
\ gui=NONE guibg=#073642 guifg=NONE
highlight CursorLine
\ term=NONE
\ cterm=NONE ctermbg=235 ctermfg=NONE
\ gui=NONE guibg=#073642 guifg=NONE
highlight CursorLineNr
\ term=bold
\ cterm=bold ctermbg=NONE ctermfg=178
\ gui=bold guibg=#073642 guifg=Orange
highlight LineNr
\ term=NONE
\ cterm=NONE ctermfg=241 ctermbg=NONE
\ gui=NONE guifg=#839497 guibg=#073642
highlight User1
\ term=NONE
\ cterm=NONE ctermbg=237 ctermfg=Grey
\ gui=NONE guibg=#073642 guifg=#839496
" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
set statusline=
set statusline+=%1* " User1 highlight
set statusline+=\ [%n] " Buffer number
set statusline+=\ %{GetGitBranchName()} " Git branch name
set statusline+=\ [%f] " Path to the file
set statusline+=%m " Modified flag
set statusline+=%r " Readonly flag
set statusline+=%h " Help file flag
set statusline+=%w " Preview window flag
set statusline+=%y " File type
set statusline+=[
set statusline+=%{&ff} " File format
set statusline+=:
set statusline+=%{strlen(&fenc)?&fenc:'none'} " File encoding
set statusline+=]
set statusline+=%= " Left/Right separator
set statusline+=%c " File encoding
set statusline+=,
set statusline+=%l " Current line number
set statusline+=/
set statusline+=%L " Total number of lines
set statusline+=\ (%P)\ " Percent through file
" Example result:
"
" [1] [master] [vim/vimrc][vim][unix:utf-8] 17,238/381 (59%)
" ----------------------------------------------------------------------
" | Local Settings |
" ----------------------------------------------------------------------
" Load local settings if they exist
"
" Note: The following needs to be included last in order to allow
" any of the above settings to be overwritten by local ones
if filereadable(glob("~/.vimrc.local"))
source ~/.vimrc.local
endif