forked from frazrepo/vimrc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugins_config.vim
449 lines (379 loc) · 15.3 KB
/
plugins_config.vim
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
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Maintainer: frazrepo
" https://github.com/frazrepo/vimrc
"
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => LeaderF map {{{1
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
let g:Lf_RootMarkers = ['.git', '.hg', '.svn', '.project', '.root']
let g:Lf_WorkingDirectoryMode = 'Ac'
let g:Lf_WildIgnore = {
\ 'dir' : ['.git', '.hg', '.svn', 'bin', 'obj', 'packages','android-studio','node_modules'],
\ 'file': ['*.sw?', '~$*', '*.bak', '*.exe','*.jar', '*.dll', '*.png', '*.map', '*.o', '*.so', '*.py[co]','*tags*'],
\ }
let g:Lf_CacheDirectory = expand('~/.cache')
if !isdirectory(g:Lf_CacheDirectory)
silent! call mkdir(g:Lf_CacheDirectory, 'p')
endif
let g:Lf_MruMaxFiles = 200
let g:Lf_MaxCount = 0
" Do not show icons, icons are shown by default
let g:Lf_ShowDevIcons = 0
" Refresh cache after restart , default = 1
let g:Lf_UseCache=0
let g:Lf_CommandMap = {'<C-K>': ['<Up>'], '<C-J>': ['<Down>']}
"Files
let g:Lf_ShortcutF = '<C-P>'
"Buffers
let g:Lf_ShortcutB = '<leader>,'
nnoremap <silent> <leader>; :LeaderfLine<CR>
nnoremap <silent> <leader>co :LeaderfHistoryCmd<CR>
nnoremap <silent> <leader>u :LeaderfMru<CR>
" popup mode
let g:Lf_WindowPosition = 'popup'
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => Lightline {{{1
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Show on multiple screen not on single screen
set laststatus=2
let g:lightline = {
\ 'colorscheme': 'wombat',
\ 'active': {
\ 'left': [ [ 'mode', 'paste' ], [ 'fugitive', 'filename' ] ],
\ 'right': [ [ 'column' ], [ 'mylineinfo' ], [ 'filetype' ] ]
\ },
\ 'inactive': {
\ 'left': [ [ 'filename' ] ],
\ 'right': [ [ 'lineinfo' ], [ 'percent' ] ]
\ },
\ 'component': {
\ 'readonly': '%{&filetype=="help"?"":&readonly?"🔒":""}',
\ 'modified': '%{&filetype=="help"?"":&modified?"+":&modifiable?"":"-"}',
\ 'fugitive': '%{exists("*fugitive#head")?fugitive#head():""}',
\ 'lineinfo': '%3l:%-2c',
\ 'column': '%2c ',
\ 'mylineinfo': "%{printf('%03d/%03d', line('.'), line('$'))}",
\ },
\ 'component_visible_condition': {
\ 'readonly': '(&filetype!="help"&& &readonly)',
\ 'modified': '(&filetype!="help"&&(&modified||!&modifiable))',
\ 'fugitive': '(exists("*fugitive#head") && ""!=fugitive#head())'
\ },
\ 'separator': { 'left': " ", 'right': " " },
\ 'subseparator': { 'left': " ", 'right': " " }
\ }
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => vim-rainbow brackets {{{1
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Set this to 1 if you want to activate by default
" , or active by typing the :RainbowToggle command
let g:rainbow_active = 0
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => ultisnips and vim-snippets configuration {{{1
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
if exists("g:developer_edition")
let g:UltiSnipsExpandTrigger='<Nop>'
else
"Fixing bug on markdown files, not working when opening the second time
let g:UltiSnipsExpandTrigger='<C-j>'
endif
let g:UltiSnipsJumpForwardTrigger = "<Tab>"
let g:UltiSnipsJumpBackwardTrigger = "<S-Tab>"
" If you want :UltiSnipsEdit to split your window.
let g:UltiSnipsEditSplit="vertical"
" Add custom directories for snippets
let g:UltiSnipsSnippetDirectories = [$HOME.'/.vim_runtime/plugins/vim-snippets/UltiSnips']
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => vim unimpaired {{{1
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" (> and < conflict with visual indentation)
nmap ( [
nmap ) ]
omap ( [
omap ) ]
xmap ( [
xmap ) ]
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => Emmet plugin remap {{{1
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Default leader <C-y>
if exists("g:developer_edition")
let g:user_emmet_leader_key = '<C-e>'
let g:user_emmet_expandabbr_key = '<C-x><C-e>'
else
let g:user_emmet_leader_key = ','
endif
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => vim-grepper search {{{1
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
let g:grepper={}
let g:grepper.tools=["rg", "git"]
nmap <leader>/ :GrepperRg<Space>
vmap <leader>/ "sy:GrepperRg -F '<C-r>s'<Space>
vmap <leader>gr <plug>(GrepperOperator)
nnoremap <Leader>* :Grepper -cword -noprompt<CR>
xmap <Leader>*
\ "sy
\ gv<Leader>gr
" Project wide find and replace. It's similar to <leader>r but applies to all matches
" across all files.
nnoremap <Leader>R
\ :let @s='\<'.expand('<cword>').'\>'<CR>
\ :Grepper -cword -noprompt<CR>
\ :cfdo %s/<C-r>s//g \| update
\<Left><Left><Left><Left><Left><Left><Left><Left><Left><Left><Left>
" Visual Selection Variant
xmap <Leader>R
\ "sy
\ gv<Leader>gr
\ :cfdo %s/<C-r>s//g \| update
\<Left><Left><Left><Left><Left><Left><Left><Left><Left><Left><Left>
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => vim-markdown {{{1
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
let g:vim_markdown_folding_disabled = 1
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => vim-schlep to drag in visual mode {{{1
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
vmap <up> <Plug>SchleppUp
vmap <down> <Plug>SchleppDown
vmap <left> <Plug>SchleppLeft
vmap <right> <Plug>SchleppRight
" Duplicate selection
vmap D <Plug>SchleppDup
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => Vim-autopairs workarounf for â, î and û {{{1
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
if !exists("g:developer_edition")
"Toggle with Alt-P mapping
let g:AutoPairsShortcutBackInsert=''
let g:AutoPairsShortcutJump=''
let g:AutoPairsMoveCharacter=''
endif
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => vim-sandwich to simulate surround mappings {{{1
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
runtime macros/sandwich/keymap/surround.vim
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => vim-qlist {{{1
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
nnoremap <silent> <leader>f :execute 'Ilist ' . expand('<cword>')<CR>
vnoremap <silent> <leader>f :<C-u>call VisualSelection('', '')<CR>:Ilist <C-R>=@/<CR><CR>
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => vim-over {{{1
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
let g:over#command_line#substitute#replace_pattern_visually = 1
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => Undotree {{{1
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
nnoremap <F4> :UndotreeToggle<cr>
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => vim-move {{{1
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
let g:move_auto_indent = 0
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => Completor {{{1
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
if !exists("g:developer_edition")
fun! TabOrComplete() "{{{
call UltiSnips#ExpandSnippet()
if g:ulti_expand_res == 0
if pumvisible()
return "\<C-n>"
else
call UltiSnips#JumpForwards()
if g:ulti_jump_forwards_res == 0
" If completor is not open and we are in the middle of typing a word then
" `tab` opens completor menu.
let inp_str = strpart( getline('.'), col('.')-3, 2 )
if col('.')>1 && (inp_str =~ '^\w$' || inp_str =~ '\%(->\)\|\%(.\w\)\|\%(\w\.\)\|\%(./\)')
return "\<C-R>=completor#do('complete')\<CR>"
" Uncomment here to return to vanilla completion
" return "\<C-n>"
else
return "\<TAB>"
endif
endif
endif
endif
return ""
endf "}}}
au InsertEnter * exec "inoremap <silent> <Tab> <C-R>=TabOrComplete()<cr>"
"LSP Activation (not working ?)
let g:completor_filetype_map = {}
" Enable lsp for go by using gopls
let g:completor_filetype_map.go = {'ft': 'lsp', 'cmd': 'gopls'}
endif
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => coc {{{1
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Languages Support :
" javascript : coc-tsserver and coc-eslint (npm install -g eslint) (ok)
" typescript : coc-tsserver and coc-tslint (npm install -g tslint typescript) (ok)
" html, css : coc-html and coc-css (ok)
" vim : vim-lsp (ok)
" ruby : coc-solargraph (not installed yet)
" python : coc-python (jedi) (ok)
" go : via languageserver and vim-go (ok)
" powershell : coc-powershell (ok)
" sql snippets : SadeghPM/sql-vscode-snipptes
" Snippets
" coc-snippets
" coc-ultisnips : to handle ultisnips python snippets, uuid, ....
if exists("g:developer_edition")
let g:coc_global_extensions = [
\ 'coc-css',
\ 'coc-html',
\ 'coc-tag',
\ 'coc-json',
\ 'coc-pairs',
\ 'coc-prettier',
\ 'coc-tsserver',
\ 'coc-tslint',
\ 'coc-eslint',
\ 'coc-snippets',
\ 'coc-ultisnips',
\ 'coc-python',
\ 'coc-marketplace',
\ 'coc-explorer'
\ ]
" Powershell : call coc#powershell#install() to install
" call coc#powershell#install()
" Language Server : Go and Python
" go-langserver : go get -u github.com/sourcegraph/go-langserver
" python : - Jedi : do pip3 install jedi (default activated)
" - Windows/Linux : use Microsoft Language Server (disable jedi in config)
let g:coc_user_config = {
\ 'coc.preferences.extensionUpdateCheck': 'never',
\ 'snippets.ultisnips.directories': [
\ 'plugins/vim-snippets/UltiSnips'
\ ],
\ 'suggest.noselect': v:false,
\ 'python.jediEnabled': v:true,
\ 'languageserver': {
\ 'golang': {
\ 'command': '~/go/bin/go-langserver',
\ 'filetypes': ['go'],
\ 'initializationOptions': {
\ 'gocodeCompletionEnabled': v:true,
\ 'diagnosticsEnabled': v:true,
\ 'lintTool': 'golint'
\ }
\ }
\ }
\ }
" Use command ':verbose imap <tab>' to make sure tab is not mapped by other plugin.
" Expand or Validate with <Tab>
imap <silent><expr> <Tab> <SID>expand()
function! s:expand()
"Expand snippet
if pumvisible()
return "\<CR>"
endif
"Place Holder
if coc#expandableOrJumpable()
return "\<C-r>=coc#rpc#request('doKeymap', ['snippets-expand-jump',''])\<CR>"
endif
"If back space, insert Tab
let col = col('.') - 1
if !col || getline('.')[col - 1] =~# '\s'
return "\<Tab>"
endif
"Emmet
return "\<C-x>\<C-e>"
endfunction
" Close preview window after completion is done
autocmd! CompleteDone * if pumvisible() == 0 | pclose | endif
"Jump to next/previous placeholder for snippet
let g:coc_snippet_next = '<TAB>'
let g:coc_snippet_prev = '<S-TAB>'
" Use <c-space> to trigger completion.
inoremap <silent><expr> <c-space> coc#refresh()
" Use <cr> to confirm completion, `<C-g>u` means break undo chain at current position.
" Coc only does snippet and additional edit on confirm.
inoremap <silent><expr> <cr> pumvisible() ? coc#_select_confirm() :
\"\<C-g>u\<CR>\<c-r>=coc#on_enter()\<CR>"
" Remap keys for gotos
nmap <silent> gd <Plug>(coc-definition)
" nmap <silent> gy <Plug>(coc-type-definition)
nmap <silent> gi <Plug>(coc-implementation)
nmap <silent> gx <Plug>(coc-references)
" Use K to show documentation in preview window
nnoremap <silent> K :call <SID>show_documentation()<CR>
function! s:show_documentation()
if (index(['vim','help'], &filetype) >= 0)
execute 'h '.expand('<cword>')
else
call CocAction('doHover')
endif
endfunction
" Highlight symbol under cursor on CursorHold
autocmd CursorHold * silent call CocActionAsync('highlight')
" Remap for rename current word
nmap <leader>rn <Plug>(coc-rename)
" Remap for format selected region
xmap ,f <Plug>(coc-format-selected)
nmap ,f <Plug>(coc-format-selected)
augroup mygroup
autocmd!
" Setup formatexpr specified filetype(s).
autocmd FileType typescript,json setl formatexpr=CocAction('formatSelected')
" Update signature help on jump placeholder
autocmd User CocJumpPlaceholder call CocActionAsync('showSignatureHelp')
augroup end
" Add diagnostic info for https://github.com/itchyny/lightline.vim
let g:lightline = {
\ 'colorscheme': 'wombat',
\ 'active': {
\ 'left': [ [ 'mode', 'paste' ],
\ [ 'cocstatus', 'readonly', 'filename', 'modified' ] ]
\ },
\ 'component_function': {
\ 'cocstatus': 'coc#status'
\ },
\ }
endif
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => vim-rooter {{{1
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
let g:rooter_silent_chdir = 1
let g:rooter_patterns = ['global.json', '.git/']
let g:rooter_change_directory_for_non_project_files = ''
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => neoformat {{{1
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
noremap <F3> :Neoformat<CR>
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => yankmatches {{{1
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
let g:YankMatches#ClipboardRegister='+'
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => Highlightedyank {{{1
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
let g:highlightedyank_highlight_duration = 300
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => Scratch {{{1
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
nnoremap <leader>bs :Scratch<cr>
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => Fugitive {{{1
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
nnoremap <leader>gs :Gstatus<cr>
nnoremap <leader>gd :Gvdiff<cr>
nnoremap <leader>gb :Gblame<cr>
nnoremap gdh :diffget //2<cr>
nnoremap gdl :diffget //3<cr>
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => NerdTree and CocExplorer {{{1
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
if exists("g:developer_edition")
nnoremap <C-n> :CocCommand explorer<CR>
else
nnoremap <C-n> :NERDTreeToggle<CR>
nnoremap <leader>n :NERDTreeFind<CR>
endif
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Modeline
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" vim: fdm=marker