-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvimrc
351 lines (323 loc) · 11 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
" Features
set nocompatible " Don't try to run in vi-compatible mode
set autoread " Reload files changed outside the editor
set title " Attempt to set the terminal title
set ignorecase " Ignore case in searches
set smartcase " ^- except when I use case
set nostartofline " Commands evaluate from cursor position
set showmatch
set showcmd
set magic
set ttyfast
set bs=2 " Backspace can wrap
set vb t_vb= " Ignore Bells
set dir=~/.vimswap
set undofile
set undodir=~/.vimundo
set nofoldenable " Disable folding
set nowrap " Do not wrap lines
set encoding=utf-8
set modeline
set modelines=5
if has('termguicolors')
set termguicolors
endif
" UI Tweaks
set ruler
set number
if has("gui_running")
set mouse=a
set mousefocus
endif
set showmode
set nohlsearch
set lazyredraw
set nocursorline
set nocursorcolumn
highlight CursorColumn ctermbg=234
set laststatus=2
set listchars=tab:»\ ,extends:›,precedes:‹,nbsp:·,trail:·
set list
" Tab handling
set autoindent
set tabstop=4
set softtabstop=4
set shiftwidth=4
set expandtab
set shiftround
" Auto-complete settings
set complete=.,b,u,]
" Enable tags:
set tags=./tags;/
" Colors
let s:brown = "905532"
let s:aqua = "3AFFDB"
let s:blue = "689FB6"
let s:darkBlue = "44788E"
let s:purple = "834F79"
let s:lightPurple = "834F79"
let s:red = "AE403F"
let s:beige = "F5C06F"
let s:yellow = "F09F17"
let s:orange = "D4843E"
let s:darkOrange = "F16529"
let s:pink = "CB6F6F"
let s:salmon = "EE6E73"
let s:green = "8FAA54"
let s:lightGreen = "31B53E"
let s:white = "FFFFFF"
let s:rspec_red = 'FE405F'
let s:git_orange = 'F54D27'
" Maps and Functions
nnoremap ; :
noremap <f2> :NERDTreeToggle<CR>
set pastetoggle=<F3>
noremap <F4> :MundoToggle<CR>
noremap <f5> :TagbarToggle<CR>
nmap <silent> <C-h> :wincmd h<CR>
nmap <silent> <C-j> :wincmd j<CR>
nmap <silent> <C-k> :wincmd k<CR>
nmap <silent> <C-l> :wincmd l<CR>
function WordProcess()
setlocal tw=78 spelllang=en_us spell
endfunction
function MailHandler()
call WordProcess()
setlocal fo+=aw
endfunction
function Max(x, y)
return a:x > a:y ? a:x : a:y
endfunction
function InitializeBackground()
" Adjust based on iTerm2 background
let system_appearance = $SYSTEM_APPEARANCE
let term_profile = $ITERM_PROFILE
if len(system_appearance)
execute "set bg=".system_appearance
elseif stridx(tolower(term_profile),"light") >= 0
set background=light
else
set background=dark
endif
endfunction
function UpdateBackground()
" Adjust based on the macOS settings
if executable("defaults")
let macosMode = trim(system("defaults read -g AppleInterfaceStyle"))
if macosMode ==? "dark"
set bg=dark
else
set bg=light
endif
endif
endfunction
fun! StripTrailingWhitespace()
let l:cursorpos = getpos(".")
" Only strip if the b:noStripWhitespace variable isn't set
if exists('b:noStripWhitespace')
return
endif
%s/\s\+$//e
call setpos('.', l:cursorpos)
endfun
" Set tmux tab name
autocmd BufEnter * call system("tmux rename-window " . expand("%:t"))
if has('macunix')
autocmd VimEnter,FocusGained * call UpdateBackground()
endif
" Auto commands and filetype assignment
augroup filetype
au! BufRead,BufNewFile *.mmd set filetype=markdown
au! BufRead,BufNewFile *.html set filetype=mason
au! BufRead,BufNewFile *.m set filetype=mason
au! BufRead,BufNewFile autohandler set filetype=mason
au! BufRead,BufNewFile syshandler set filetype=mason
au! BufRead,BufNewFile dhandler set filetype=mason
au! BufRead,BufNewFile *.mas set filetype=mason
au! BufRead,BufNewFile *.comp set filetype=mason
au! BufRead,BufNewFile *.pp set filetype=puppet
au! BufRead,BufNewFile *.psgi set filetype=perl
au! BufRead,BufNewFile *.txt set filetype=text
au! BufRead,BufNewFile *.tt set filetype=tt2html
au! BufRead,BufNewFile *.tt2 set filetype=tt2html
au! BufRead,BufNewFile *.patch let b:noStripWhitespace = 1
au! BufRead,BufNewFile *.sieve set ft=sieve ff=unix
au! BufRead,BufNewFile *.trst set ft=rst
au! BufRead,BufNewFile *.yaml setlocal ts=2 sts=2 sw=2 expandtab
au! BufRead,BufNewFile *.yml setlocal ts=2 sts=2 sw=2 expandtab
augroup END
augroup wordprocessing
au! Filetype text call WordProcess()
au! Filetype markdown call WordProcess() | let b:noStripWhitespace = 1
au! Filetype mail call MailHandler()
au! BufWritePre * call StripTrailingWhitespace()
au! StdinReadPre * let s:std_in=1
augroup END
augroup nerdtree
" Start NERDTree, unless a file or session is specified, eg. vim -S session_file.vim.
au! VimEnter * if argc() == 0 && !exists('s:std_in') && v:this_session == '' | NERDTree | endif
" Start NERDTree when Vim starts with a directory argument.
au! VimEnter * if argc() == 1 && isdirectory(argv()[0]) && !exists('s:std_in') |
\ execute 'NERDTree' argv()[0] | wincmd p | enew | execute 'cd '.argv()[0] | endif
augroup END
" BEGIN: Conway's Tweaks
" Visual Block mode is far more useful that Visual mode (so swap the commands)...
nnoremap v <C-V>
nnoremap <C-V> v
vnoremap v <C-V>
vnoremap <C-V> v
"Square up visual selections...
set virtualedit=block
" Make BS/DEL work as expected in visual modes (i.e. delete the selected text)...
vmap <BS> x
" When shifting, retain selection over multiple shifts...
vmap <expr> > KeepVisualSelection(">")
vmap <expr> < KeepVisualSelection("<")
function! KeepVisualSelection(cmd)
set nosmartindent
if mode() ==# "V"
return a:cmd . ":set smartindent\<CR>gv"
else
return a:cmd . ":set smartindent\<CR>"
endif
endfunction
" END: Conway's Tweaks
" Vundle Plugin Configurations
filetype off " required!
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" let Vundle manage Vundle
Plugin 'gmarik/Vundle.vim'
" Color schemes
Plugin 'altercation/vim-colors-solarized'
let g:solarized_visibility = "high"
Plugin 'tomasr/molokai'
let g:molokai_original = 1
let g:rehash256 = 1
Plugin 'morhetz/gruvbox'
" UI Plugins
Plugin 'ack.vim'
Plugin 'ctrlpvim/ctrlp.vim'
Plugin 'preservim/tagbar'
Plugin 'preservim/nerdcommenter'
Plugin 'preservim/nerdtree'
Plugin 'tiagofumo/vim-nerdtree-syntax-highlight'
let g:NERDTreeDirArrowExpandable = ''
let g:NERDTreeDirArrowCollapsible = ''
let g:NERDTreeLimitedSyntax = 1
let g:NERDTreeFileExtensionHighlightFullName = 1
let g:NERDTreeExactMatchHighlightFullName = 1
let g:NERDTreePatternMatchHighlightFullName = 1
let g:NERDTreeExtensionHighlightColor = {}
let g:NERDTreeExtensionHighlightColor['cfg'] = s:beige
let g:NERDTreeExtensionHighlightColor['conf'] = s:beige
let g:NERDTreeExtensionHighlightColor['gz'] = s:red
let g:NERDTreeExtensionHighlightColor['ini'] = s:beige
let g:NERDTreeExtensionHighlightColor['j2'] = s:salmon
let g:NERDTreeExtensionHighlightColor['mkdn'] = s:blue
let g:NERDTreeExtensionHighlightColor['md'] = s:blue
let g:NERDTreeExtensionHighlightColor['pm'] = s:orange
let g:NERDTreeExtensionHighlightColor['pl'] = s:pink
let g:NERDTreeExtensionHighlightColor['t'] = s:yellow
let g:NERDTreeExtensionHighlightColor['tar'] = s:red
let g:NERDTreeExtensionHighlightColor['yaml'] = s:beige
let g:NERDTreeExtensionHighlightColor['yml'] = s:beige
let g:NERDTreeExtensionHighlightColor['zip'] = s:red
let g:NERDTreeWinSize = Max(&columns / 6, 25)
let g:NERDTreeWinSizeMax = 80
Plugin 'vim-airline/vim-airline'
Plugin 'vim-airline/vim-airline-themes'
let g:airline#extensions#tabline#enabled = 1
let g:airline#extensions#ale#enabled = 1
let g:airline_powerline_fonts = 1
let g:airline_theme = 'gruvbox'
" Load lexima on 810 and greater
if v:version >= 810
Plugin 'cohama/lexima.vim'
let g:lexima_enable_newline_rules = 1
endif
" Don't load external completions automatically
let g:ale_completion_autoimport = 0
" Enable ale autocomplete
let g:ale_completion_enabled = 1
Plugin 'dense-analysis/ale'
Plugin 'tpope/vim-sensible'
Plugin 'tpope/vim-repeat'
Plugin 'tpope/vim-surround'
Plugin 'godlygeek/tabular'
Plugin 'simnalamburt/vim-mundo'
Plugin 'lfilho/cosco.vim'
noremap <silent> ,; :call cosco#commaOrSemiColon()<CR>
" Git integration
Plugin 'tpope/vim-fugitive'
Plugin 'ryanoasis/vim-devicons'
" Perl Syntax Highlighting
Plugin 'c9s/perlomni.vim'
Plugin 'vim-perl/vim-perl'
let perl_extended_vars = 1
let perl_include_pod = 1
let perl_want_scope_in_variables = 1
Plugin 'yko/mojo.vim'
let mojo_highlight_data = 1
" Other Languages
Plugin 'fatih/vim-go'
Plugin 'elzr/vim-json'
Plugin 'exu/pgsql.vim'
Plugin 'rust-lang/rust.vim'
" Markup/Serialization Language Support
Plugin 'ap/vim-css-color'
Plugin 'hail2u/vim-css3-syntax'
Plugin 'othree/html5.vim'
Plugin 'tpope/vim-markdown'
Plugin 'vim-scripts/sieve.vim'
" Sysadmin Stuff
Plugin 'zaiste/tmux.vim'
Plugin 'vim-scripts/iptables'
Plugin 'rodjek/vim-puppet'
Plugin 'Glench/Vim-Jinja2-Syntax'
Plugin 'apeschel/vim-syntax-syslog-ng'
Plugin 'hashivim/vim-terraform'
call vundle#end()
" Re-enable filetype and syntax
filetype plugin on
filetype indent on
syntax on
" Setup Color Scheme
colorscheme gruvbox
call InitializeBackground()
" borrowed from: https://github.com/ellzey/dotfiles/blob/master/vimrc#L98
highlight ExtraWhitespace ctermbg=red guibg=red
match ExtraWhitespace /\s\+$/
" Golang conditionally
if executable('go')
augroup golang
au!
au FileType go nmap <leader>b <Plug>(go-build)
au FileType go nmap <leader>r <Plug>(go-run)
au FileType go nmap <leader>t <Plug>(go-test)
au FileType go nmap <leader>c <Plug>(go-coverage)
au FileType go nmap <Leader>ds <Plug>(go-def-split)
au FileType go nmap <Leader>dv <Plug>(go-def-vertical)
au FileType go nmap <Leader>dt <Plug>(go-def-tab)
au FileType go nmap <Leader>gd <Plug>(go-doc)
au FileType go nmap <Leader>gv <Plug>(go-doc-vertical)
au FileType go nmap <Leader>s <Plug>(go-implements)
au FileType go nmap <Leader>i <Plug>(go-info)
au FileType go nmap <Leader>e <Plug>(go-rename)
augroup END
let g:go_version_warning = 0
let g:go_fmt_command = "goimports"
let g:go_highlight_functions = 1
let g:go_highlight_methods = 1
let g:go_highlight_fields = 1
let g:go_highlight_types = 1
let g:go_highlight_operators = 1
let g:go_highlight_build_constraints = 1
let g:go_fmt_fail_silently = 1
let g:go_list_type = "quickfix"
let g:syntastic_mode_map = { 'mode': 'active', 'passive_filetypes': ['go'] }
let g:syntastic_check_on_open = 1
let g:syntastic_go_checkers = ['golint', 'govet', 'errcheck']
let g:syntastic_python_checkers = ['flake8']
let g:syntastic_python_flake8_args = '--ignore E128 --builtins="_"'
endif