-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvimrc
293 lines (235 loc) · 8.54 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
" Leader
let mapleader = " "
set backspace=2 " Backspace deletes like most programs in insert mode
set nobackup
set nowritebackup
set noswapfile " http://robots.thoughtbot.com/post/18739402579/global-gitignore#comment-458413287
set history=50
set ruler " show the cursor position all the time
set showcmd " display incomplete commands
set incsearch " do incremental searching
set nohlsearch " don't highlight incremental search results
set laststatus=2 " Always display the status line
set autowrite " Automatically :write before running commands
" Switch syntax highlighting on, when the terminal has colors
" Also switch on highlighting the last used search pattern.
if (&t_Co > 2 || has("gui_running")) && !exists("syntax_on")
syntax on
endif
if filereadable(expand("~/.vimrc.bundles"))
source ~/.vimrc.bundles
endif
" Load matchit.vim, but only if the user hasn't installed a newer version.
if !exists('g:loaded_matchit') && findfile('plugin/matchit.vim', &rtp) ==# ''
runtime! macros/matchit.vim
endif
filetype plugin indent on
augroup vimrcEx
autocmd!
" When editing a file, always jump to the last known cursor position.
" Don't do it for commit messages, when the position is invalid, or when
" inside an event handler (happens when dropping a file on gvim).
autocmd BufReadPost *
\ if &ft != 'gitcommit' && line("'\"") > 0 && line("'\"") <= line("$") |
\ exe "normal g`\"" |
\ endif
" Set syntax highlighting for specific file types
" TODO: Move to ~/.vim/ftdetect/(ext).vim
autocmd BufRead,BufNewFile Appraisals set filetype=ruby
autocmd BufRead,BufNewFile *.md set filetype=markdown
autocmd BufRead,BufNewFile .{jscs,jshint,eslint}rc set filetype=json
autocmd BufRead,BufNewFile *.cjsx set filetype=coffee
autocmd BufRead,BufNewFile *.mjml set filetype=eruby.html.mjml
" ALE linting events
if g:has_async
set updatetime=1000
let g:ale_lint_on_text_changed = 0
autocmd CursorHold * call ale#Queue(0)
autocmd CursorHoldI * call ale#Queue(0)
autocmd InsertEnter * call ale#Queue(0)
autocmd InsertLeave * call ale#Queue(0)
else
echoerr "ALE requires NeoVim or Vim 8"
endif
augroup END
" When the type of shell script is /bin/sh, assume a POSIX-compatible
" shell for syntax highlighting purposes.
let g:is_posix = 1
" Softtabs, 2 spaces
set tabstop=2
set shiftwidth=2
set shiftround
set expandtab
" Display extra whitespace
set list listchars=tab:»·,trail:·,nbsp:·
" Use one space, not two, after punctuation.
set nojoinspaces
" Text formatting:
" - (j) remove comment leader when joining lines
" - (n) recognize numbered lists
set formatoptions+=jn
" Use The Silver Searcher https://github.com/ggreer/the_silver_searcher
if executable('ag')
" Use Ag over Grep
set grepprg=ag\ --nogroup\ --nocolor
let g:ag_prg="ag --vimgrep"
if !exists(":Ag")
command -nargs=+ -complete=file -bar Ag silent! grep! <args>|cwindow|redraw!
nnoremap \ :Ag<SPACE>
endif
endif
" Make it obvious where 80 characters is
set textwidth=80
set colorcolumn=+1
" Numbers
set number
set numberwidth=5
" Tab completion
" will insert tab at beginning of line,
" will use completion if not at beginning
set wildmode=list:longest,list:full
function! InsertTabWrapper()
let col = col('.') - 1
if !col || getline('.')[col - 1] !~ '\k'
return "\<tab>"
else
return "\<c-p>"
endif
endfunction
inoremap <Tab> <c-r>=InsertTabWrapper()<cr>
inoremap <S-Tab> <c-n>
" Switch between the last two files
nnoremap <Leader><Leader> <c-^>
" Get off my lawn
nnoremap <Left> :echoe "Use h"<CR>
nnoremap <Right> :echoe "Use l"<CR>
nnoremap <Up> :echoe "Use k"<CR>
nnoremap <Down> :echoe "Use j"<CR>
" vim-test mappings
nnoremap <silent> <Leader>t :TestFile<CR>
nnoremap <silent> <Leader>s :TestNearest<CR>
nnoremap <silent> <Leader>l :TestLast<CR>
nnoremap <silent> <Leader>a :TestSuite<CR>
nnoremap <silent> <Leader>gt :TestVisit<CR>
" Run commands that require an interactive shell
nnoremap <Leader>r :RunInInteractiveShell<space>
" Treat <li> and <p> tags like the block tags they are
let g:html_indent_tags = 'li\|p'
" Set tags for vim-fugitive
set tags^=.git/tags
" Open new split panes to right and bottom, which feels more natural
set splitbelow
set splitright
" Quicker window movement
nnoremap <C-j> <C-w>j
nnoremap <C-k> <C-w>k
nnoremap <C-h> <C-w>h
nnoremap <C-l> <C-w>l
" Move between linting errors
nnoremap ]r :ALENextWrap<CR>
nnoremap [r :ALEPreviousWrap<CR>
" Map Ctrl + p to open fuzzy find (FZF)
nnoremap <C-p> :GFiles<cr>
" Set spellfile
set spellfile=$HOME/.vim-spell-en.utf-8.add
" Autocomplete with dictionary words when spell check is on
set complete+=kspell
" Always use vertical diffs
set diffopt+=vertical
" Color Settings
set t_Co=256
let g:solarized_termcolors=256
set background=dark
colorscheme solarized
" Make Ruby quotes red, not blue (override theme in thoughbot/dotfiles)
highlight link rubyStringDelimiter Delimiter
" Python-friendly settings for vim-tmux-runner, recommended by the README
let g:VtrStripLeadingWhitespace = 0
let g:VtrClearEmptyLines = 0
let g:VtrAppendNewline = 1
" Mappings for opening, attaching, and focusing the tmux runner
nmap <leader>osr :VtrOpenRunner {'orientation': 'h', 'percentage': 50}<cr>
nnoremap <leader>va :VtrAttachToPane<cr>
nnoremap <leader>fr :VtrFocusRunner<cr>
" Mappings to send current and visually-selected line(s) to the tmux runner
nmap <C-f> :VtrSendLinesToRunner<cr>
vmap <C-f> :VtrSendLinesToRunner<cr>
" Configure vim-test to use vim-tmux-runner to execute test commands
" (The default 'vtr' strategy for vim-test opens a new pane instead of using the
" attached tmux pane)
function! VimTestVtrCustomStrategy(cmd)
call VtrSendCommand(a:cmd)
endfunction
let g:test#custom_strategies = { 'vtr_custom': function('VimTestVtrCustomStrategy')}
let g:test#strategy = "vtr_custom"
" Configure vim-test to use spring directly if the rspec binstubs are not
" instrumented with spring:
let test#ruby#use_spring_binstub = 1
"Auto-indent entire file and return to previous cursor location
map <Leader>i mmgg=G`m
map <leader>bp orequire 'pry'; binding.pry<esc>
"Format JSON and XML
map <Leader>js :silent %!python -m json.tool<cr>
map <Leader>xml :silent %!xmllint --format --recover - 2>/dev/null<cr>
" Automatically rebalance windows on vim resize
autocmd VimResized * :wincmd =
" Zoom a vim pane, <leader>= to re-balance
nnoremap <leader>- :wincmd _<cr>:wincmd \|<cr>
nnoremap <leader>= :wincmd =<cr>
" Quickly search dotfiles with Ctl-P
nmap <leader>df :GFiles ~/Code/reshleman/dotfiles<cr>
" Reduce wait time for key code or mapped key sequence to complete.
set timeoutlen=500
" Set up persistent undo
if has('persistent_undo')
let s:myUndoDir = expand('$HOME/.vimundo')
if !isdirectory(s:myUndoDir)
call mkdir(s:myUndoDir, 'p')
endif
execute 'set undodir=' . s:myUndoDir
set undofile
endif
" Show :Ag key mapping hint text in quickfix window
let g:ag_apply_qmappings = 1
let g:ag_mapping_message = 1
" Always use global Python linters, not those from a virtualenv
let g:ale_python_flake8_use_global=1
let g:ale_python_pylint_use_global=1
" Use project-specific Python linter config, if available
if filereadable("etc/pep8.cfg")
let g:ale_python_flake8_options="--config=etc/pep8.cfg"
let g:ale_python_flake8_change_directory=0
endif
if filereadable("etc/pylintrc")
let g:ale_python_pylint_options="--rcfile=etc/pylintrc"
let g:ale_python_pylint_change_directory=0
endif
let g:ale_linters = {
\ 'python': ['pylint', 'flake8'],
\ 'ruby': ['rubocop'],
\}
let g:ale_fixers = {
\ 'javascript': ['eslint'],
\}
let g:ale_fix_on_save = 1
" Enable all syntax highlighting from 'vim-python/python-syntax'
let g:python_highlight_all = 1
" LSP Setup
nnoremap <silent> <leader>l0 <cmd>lua vim.lsp.buf.document_symbol()<CR>
nnoremap <silent> <leader>ld <cmd>lua vim.lsp.buf.definition()<CR>
nnoremap <silent> <leader>li :LspInfo<CR>
nnoremap <silent> <leader>lh <cmd>lua vim.lsp.buf.hover()<CR>
nnoremap <silent> <leader>lD <cmd>lua vim.lsp.buf.implementation()<CR>
nnoremap <silent> <leader>ln <cmd>lua vim.lsp.buf.rename()<CR>
nnoremap <silent> <leader>lr <cmd>lua vim.lsp.buf.references()<CR>
nnoremap <silent> <leader>lt <cmd>lua vim.lsp.buf.type_definition()<CR>
nnoremap <silent> <leader>lw <cmd>lua vim.lsp.buf.workspace_symbol()<CR>
" 'vim-python/python-syntax' is sometimes unusably slow when using the default
" regex engine; forcing the 'old' engine appears to resolve this.
set regexpengine=1
" Things I cannot type correctly
iabbrev shipiment shipment
" Local config
if filereadable($HOME . "/.vimrc.local")
source ~/.vimrc.local
endif