-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit.vim
496 lines (414 loc) · 14 KB
/
init.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
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
call plug#begin('~/.config/nvim/plugged')
"Plug 'itchyny/lightline.vim'
" Shorthand notation; fetches https://github.com/junegunn/vim-easy-align
"Plug 'junegunn/vim-easy-align'
" Any valid git URL is allowed
"Plug 'https://github.com/junegunn/vim-github-dashboard.git'
" Multiple Plug commands can be written in a single line using | separators
"Plug 'MarcWeber/vim-addon-mw-utils'
"Plug 'tomtom/tlib_vim'
"Plug 'garbas/vim-snipmate'
" On-demand loading
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
Plug 'scrooloose/syntastic'
" Plug 'Xuyuanp/nerdtree-git-plugin'
Plug 'Shougo/unite.vim'
Plug 'Shougo/vimproc'
" 目录管理
Plug 'majutsushi/tagbar'
" Plug 'bling/vim-airline'
"Plug 'Raimondi/delimitMate'
"Plug 'tpope/vim-fireplace', { 'for': 'clojure' }
"Plug 'zivyangll/git-blame.vim'
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
Plug 'autozimu/LanguageClient-neovim', {
\ 'branch': 'next',
\ 'do': 'bash install.sh',
\ }
"Plug 'junegunn/fzf'
" Plug 'Shougo/neoinclude.vim'
"Plug 'mileszs/ack.vim'
"Plug "jmcantrell/vim-virtualenv"
if has('win32') || has('win64')
Plug 'tbodt/deoplete-tabnine', { 'do': 'powershell.exe .\install.ps1' }
else
Plug 'tbodt/deoplete-tabnine', { 'do': './install.sh' }
endif
" Plug 'zchee/deoplete-clang'
Plug 'fatih/vim-go', { 'do': ':GoUpdateBinaries' }
Plug 'sbdchd/neoformat',{'for':'python'}
" Plug 'deoplete-plugins/deoplete-jedi', {'for':'python'}
"Plug 'davidhalter/jedi-vim'
Plug 'Chiel92/vim-autoformat'
"" Plug 'fisadev/vim-isort'
Plug 'janko/vim-test'
Plug 'tpope/vim-dispatch'
" Plug 'jupyter-vim/jupyter-vim'
" Plug 'neoclide/coc.nvim', {'tag': '*', 'branch': 'release'}
" Plug 'delijati/vim-importmagic'
"Plug 'Yggdroot/indentLine'
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
Plug 'kien/ctrlp.vim' "文件搜索,杀手级,重新定义了编辑器打开文件的方式
Plug 'vim-scripts/TaskList.vim' "快速跳转到TODO列表
"Plug 'Shougo/echodoc.vim'
""" markdown
" python
" Plug 'jupyter-vim/jupyter-vim'
Plug 'bfredl/nvim-ipy'
" c/c++
Plug 'skywind3000/asyncrun.vim'
" buffer list
Plug 'jlanzarotta/bufexplorer'
"color"
Plug 'rafi/awesome-vim-colorschemes'
Plug 'altercation/vim-colors-solarized'
Plug 'liuchengxu/space-vim-theme'
Plug 'habamax/vim-godot'
Plug '0x3024/vim'
call plug#end()
filetype plugin on
let g:nvim_ipy_perform_mappings=0
"去掉vi的一致性"
set nocompatible
"显示行号"
set number
" 隐藏滚动条"
set guioptions-=r
set guioptions-=L
set guioptions-=b
"隐藏顶部标签栏"
set showtabline=0
"设置字体"
"set guifont=Monaco:h13
syntax on "开启语法高亮"
set nowrap "设置不折行"
set fileformat=unix "设置以unix的格式保存文件"
set cindent "设置C样式的缩进格式"
set tabstop=4 "设置table长度"
set shiftwidth=4 "同上"
set expandtab "tab用空格代替"
set showmatch "显示匹配的括号"
set scrolloff=5 "距离顶部和底部5行"
set laststatus=2 "命令行为两行"
"set fenc=utf-8 "文件编码"
set backspace=2
set mouse=a " nicr "a "启用鼠标"
set selection=exclusive
"set selectmode=mouse,key
set matchtime=5
set ignorecase "忽略大小写"
set incsearch
set hlsearch "高亮搜索项"
set noexpandtab "不允许扩展table"
set whichwrap+=<,>,h,l
set autoread
set cursorline "突出显示当前行"
set cursorcolumn "突出显示当前列"
set hidden
set clipboard=unnamed "共享剪贴板
set grepprg=ack\ --nogroup\ $*
autocmd FileType yaml setlocal ai ts=2 sw=2 et
autocmd FileType yml setlocal ai ts=2 sw=2 et
autocmd StdinReadPre * let s:std_in=1
autocmd vimenter * NERDTreeToggle
autocmd VimEnter * if argc() == 1 && isdirectory(argv()[0]) && !exists("s:std_in") | exe 'NERDTree' argv()[0] | wincmd p | ene | exe 'cd '.argv()[0] | endif
autocmd bufenter * if (winnr("$") == 1 && exists("b:NERDTree") && b:NERDTree.isTabTree()) | q | endif
let g:NERDTreeDirArrowExpandable = '▸'
let g:NERDTreeDirArrowCollapsible = '▾'
let g:nerdtree_tabs_open_on_console_startup=1
let NERDTreeIgnore=['\.pyc','\~$','\.swp']
let g:NERDTreeGitStatusIndicatorMapCustom = {
\ "Modified" : "✹",
\ "Staged" : "✚",
\ "Untracked" : "✭",
\ "Renamed" : "➜",
\ "Unmerged" : "═",
\ "Deleted" : "✖",
\ "Dirty" : "✗",
\ "Clean" : "✔︎",
\ "Unknown" : "?"
\ }
" c/c++
"
" " 自动打开 quickfix window ,高度为 6
let g:asyncrun_open = 6
" 任务结束时候响铃提醒
let g:asyncrun_bell = 1
nnoremap <F10> :call asyncrun#quickfix_toggle(6)<cr>
" " 用户输入至少两个字符时再开始提示补全
" call deoplete#custom#source('LanguageClient',
" \ 'min_pattern_length',
" \ 2)
"
" " 字符串中不补全
" call deoplete#custom#source('_',
" \ 'disabled_syntaxes', ['String']
" \ )
"
autocmd InsertLeave,CompleteDone * if pumvisible() == 0 | pclose | endif
" Clang
let g:LanguageClient_rootMarkers = {
\ 'cpp': ['compile_commands.json', 'build'],
\ 'c': ['compile_commands.json', 'build']
\ }
" 为语言指定Language server和server的参数
let g:LanguageClient_serverCommands = {
\ 'cpp': ['clangd', '-compile-commands-dir='.getcwd()."/build/"],
\ 'c': ['clangd', '-compile-commands-dir='.getcwd().'/build/'],
\ 'lua': ['lua-lsp'],
\ 'go':['gopls'],
\ "python":['pyls']
\ }
" ",'-vv','--log-file','/tmp/pyls.log']
"let g:LanguageClient_serverCommands={"python":['pyls', '-vv', '--log-file', '/tmp/pyls.log']}
let g:LanguageClient_settingsPath="~/.config/nvim/lc-settings.json"
set completefunc=LanguageClient#complete
" set formatexpr=LanguageClient_textDocument_rangeFormatting()
set formatexpr=LanguageClient#textDocument_rangeFormatting_sync()
let g:LanguageClient_diagnosticsSignsMax=2
" markdown
let g:vim_markdown_folding_disabled = 1
let g:vim_markdown_toc_autofit = 1
let g:vim_markdown_no_default_key_mappings = 1
let g:instant_markdown_autostart = 1
let g:instant_markdown_slow = 1
let g:markdownfmt_autosave=1
"
let g:deoplete#enable_at_startup = 1
let g:deoplete#enable_ignore_case = 1
let g:deoplete#auto_completion_start_length = 2
" 是的vim script和zsh script都有,这就是deoplete
call deoplete#custom#option("sources",{
\ 'cpp': ['LanguageClient'],
\ 'c': ['LanguageClient'],
\ 'lua': ['LanguageClient'],
\ 'go': ['LanguageClient'],
\ 'python': ['LanguageClient'],
\ 'md': ['efm-language','-c','~/.config/nvim/efm-config.yaml'],
\ 'yaml': ['efm-language','-c','~/.config/nvim/efm-config.yaml'],
\ 'zsh': ['zsh']
\})
" let g:deoplete#sources#go#gocode_binary="$GOPATH/bin/gocode"
" let g:deoplete#sources#go#package_dot = 1
" let g:deoplete#sources#go#sort_class = ['package', 'func', 'type', 'var', 'const']
" let g:deoplete#sources#go#source_importer = 1
" let g:deoplete#sources#go#pointer=1
" let g:deoplete#sources#go#auto_goos=1
"
" "let g:deoplete#sources#go#cgo = 1
" let g:deoplete#sources#go#builtin_objects=1 " 自动编译
" let g:deoplete#sources#go#unimported_packages=1 " 尝试饮用为定义包名
" let g:deoplete#sources#go#fallback_to_source=1 " 尝试找其他包名
let g:tagbar_type_go = {
\ 'ctagstype' : 'go',
\ 'kinds' : [
\ 'p:package',
\ 'i:imports:1',
\ 'c:constants',
\ 'v:variables',
\ 't:types',
\ 'n:interfaces',
\ 'w:fields',
\ 'e:embedded',
\ 'm:methods',
\ 'r:constructor',
\ 'f:functions'
\ ],
\ 'sro' : '.',
\ 'kind2scope' : {
\ 't' : 'ctype',
\ 'n' : 'ntype'
\ },
\ 'scope2kind' : {
\ 'ctype' : 't',
\ 'ntype' : 'n'
\ },
\ 'ctagsbin' : 'gotags',
\ 'ctagsargs' : '-sort -silent'
\ }
let g:go_fmt_autosave = 1
let g:go_highlight_functions = 1
let g:go_autodetect_gopath = 1
let g:go_list_type = "quickfix"
let g:go_highlight_methods = 1
let g:go_highlight_structs = 1
let g:go_highlight_interfaces = 1
let g:go_highlight_operators = 1
let g:go_highlight_build_constraints = 1
let g:go_fmt_command = "goimports"
"let g:go_fmt_command = "gofmt"
let g:go_fmt_fail_silently = 1
"let g:go_term_mode = "split"
" let g:go_snippet_engine = "neosnippet"
let g:go_test_timeout= '10s'
let g:go_test_show_name = 1
let g:go_def_mode='gopls'
let g:go_info_mode='gopls'
let g:test#go#gotest#file_pattern="\v.*_test\.go$"
autocmd FileType go nmap <silent> <F2> :GoTest -v <Enter>
autocmd FileType go nmap <silent> <F3> :GoTestFunc -v <Enter>
autocmd FileType go nmap <leader>b <Plug>(go-build)
autocmd FileType go nmap <silent> <F4> :GoInfo <Enter>
autocmd FileType go nmap K <Plug>(go-doc)
let g:airline#extensions#tabline#enabled = 1
let g:airline#extensions#tabline#left_sep = '*'
let g:airline#extensions#tabline#left_alt_sep = '|'
let g:airline#extensions#tabline#formatter = 'default'
"au vimenter * :AirlineToggle
let test#neovim#term_position = "topleft"
"" python
let g:jedi#completions_enabled = 0
"let g:jedi#use_splits_not_buffers = "right"
let g:jedi#goto_command = "gd"
let g:jedi#usages_command = "<leader>n"
let g:jedi#rename_command = "<leader>r"
let g:jedi#goto_assignments_command = "<leader>g"
let g:jedi#documentation_command = "K"
"" debug
" let g:deoplete#enable_profile = 1
"call deoplete#enable_logging('DEBUG', 'deoplete.log')
" call deoplete#custom#set('jedi', 'debug_enabled', 1)
" let g:autopep8_on_save = 1
" let g:autopep8_disable_show_diff=1
"let g:autoformat_autoindent = 0
"let g:autoformat_retab = 0
"let g:autoformat_remove_trailing_spaces = 0
""autocmd FileType python let g:autoformat_autoindent=1
"autocmd FileType python let g:autoformat_retab=1
"autocmd FileType python let g:autoformat_remove_trailing_spaces=1
"let g:formatter_yapf_style ="google"
"" let g:formatter_yapf_style = 'pep8'
let g:formatters_python = ['yapf']
let test#strategy = "neovim"
let test#enabled_runners=["python#pytest"]
let test#python#pytest#executable = 'python -m pytest --capture=no'
" autocmd FileType python nmap <leader>t :TestNearest <CR>
" autocmd FileType python nmap <leader>ta :TestFile <CR>
" autocmd FileType python nmap <leader>tl :TestLast <CR>
autocmd FileType *.py nmap <leader>t :TestNearest <CR>
autocmd FileType *.py nmap <leader>ta :TestFile <CR>
autocmd FileType *.py nmap <leader>tl :TestLast <CR>
function OnSaveFormatPython()
Autoformat
"Isort
endf
autocmd BufWritePre *.py :call LanguageClient#textDocument_formatting_sync()
autocmd FileType python nmap <silent> <F2> :IPython<Space>--existing<Space>--no-window<Enter>
autocmd FileType python nmap <silent> <F3> :call IPyRunCell() <CR>
autocmd FileType python nmap <silent> <F4> :call jobstart(["jupyter" , "qtconsole" , "--JupyterWidget.include_other_output=True"])<Enter>
" autocmd BufWritePre *.rs :call LanguageClient#textDocument_formatting_sync()
autocmd BufWritePre *.cpp :call LanguageClient#textDocument_formatting_sync()
autocmd BufWritePre *.h :call LanguageClient#textDocument_formatting_sync()
autocmd FileType vimfiler nmap <silent><buffer> <2-LeftMouse> <Plug>(vimfiler_smart_l)
" autocmd BufWrite *.sh :call LanguageClient_textDocument_formatting()
" autocmd BufWrite *.vim :call LanguageClient_textDocument_formatting()
" autocmd BufWrite *.md :call LanguageClient_textDocument_formatting()
let g:LanguageClient_windowLogMessageLevel='Error'
let g:LanguageClient_diagnosticsDisplay= {
\1: {
\"name": "Error",
\"texthl": "ALEError",
\"signText": "✖",
\"signTexthl": "ALEErrorSign",
\},
\2: {
\"name": "Warning",
\"texthl": "ALEWarning",
\"signText": "⚠",
\"signTexthl": "ALEWarningSign",
\},
\3: {
\"name": "Information",
\"texthl": "ALEInfo",
\"signText": "ℹ",
\"signTexthl": "ALEInfoSign",
\},
\4: {
\"name": "Hint",
\"texthl": "ALEInfo",
\"signText": "➤",
\"signTexthl": "ALEInfoSign",
\},
\}
let g:deoplete#sources#jedi#show_docstring=1
function HeaderPython()
call setline(1, "#!/usr/bin/env python")
call append(1, "# -*- coding: utf-8 -*-")
call append(2, "# Able Gao @" . strftime('%Y-%m-%d %T', localtime()))
call append(3, "# [email protected]")
normal G
normal o
normal o
endf
autocmd bufnewfile *.py call HeaderPython()
"" NERDTree
let g:NERDTreeDirArrowExpandable = '▸'
let g:NERDTreeDirArrowCollapsible = '▾'
let g:NERDTreeIndicatorMapCustom = {
\ "Modified" : "✹",
\ "Staged" : "✚",
\ "Untracked" : "✭",
\ "Renamed" : "➜",
\ "Unmerged" : "═",
\ "Deleted" : "✖",
\ "Dirty" : "✗",
\ "Clean" : "✔︎",
\ "Unknown" : "?"
\ }
let g:nerdtree_tabs_open_on_console_startup=1
let g:NERDTreeMapOpenInTab='<2-LeftMouse>'
function! TreeTagbarToggle()
VimFilerExplorer
TagbarToggle
endfunction
let mapleader=" "
"nmap <silent> <F8> :call TreeTagbarToggle() <CR>
nmap <silent> <F8> :NERDTreeToggle <CR>
nmap <silent> <F7> :BufExplorerHorizontalSplit<CR>
nmap <silent> <F9> :TagbarToggle <CR>
nmap <silent> <F6> :w <CR>
function! NumberToggle()
set nu!
endfunction
" 查找
nmap <leader>f : Ack -i
function! GitBlame()
let line =line(".") "getline('.')
if len(line) >0
execute '!git blame -L '.line.',1 '.@%
endif
endfunction
nnoremap <Leader>s :call GitBlame() <CR>
nmap <leader>w : bd <CR>
nmap <leader>n : bnext <CR>
nmap <leader>p : bprev <CR>
nmap <leader>1 <Plug>BufTabLine.Go(1)
nmap <leader>2 <Plug>BufTabLine.Go(2)
nmap <leader>3 <Plug>BufTabLine.Go(3)
nmap <leader>4 <Plug>BufTabLine.Go(4)
nmap <leader>5 <Plug>BufTabLine.Go(5)
nmap <leader>6 <Plug>BufTabLine.Go(6)
nmap <leader>7 <Plug>BufTabLine.Go(7)
nmap <leader>8 <Plug>BufTabLine.Go(8)
nmap <leader>9 <Plug>BufTabLine.Go(9)
nmap <leader>0 <Plug>BufTabLine.Go(10)
if has("termguicolors")
" fix bug for vim
set t_8f=^[[38;2;%lu;%lu;%lum
set t_8b=^[[48;2;%lu;%lu;%lum
" enable true color
set termguicolors
endif
if has("unix")
set notermguicolors
endif
set t_Co=256
set background=light
colorscheme solarized
let g:airline_theme='solarized'
" 避免json 隐藏引号
"let g:vim_json_syntax_conceal =1
"let g:indentLine_noConcealCursor="nc"
"let g:vim_json_syntax_concealcursor=""