-
Notifications
You must be signed in to change notification settings - Fork 8
/
vimrc
2328 lines (2086 loc) · 77.4 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
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
" 必須な基本設定 {{{
" tiny と small では vimrc を読み込まない
if !1 | finish | endif
"エンコーディング
set encoding=utf-8
set termencoding=utf-8
set fileencoding=utf-8
set fileencodings=utf-8,cp932,euc-jp
scriptencoding utf-8
" This is vim, not vi.
if &compatible
set nocompatible
endif
function! s:get_SID() abort
return matchstr(expand('<sfile>'), '<SNR>\d\+_\zeget_SID$')
endfunction
let s:SID = s:get_SID()
delfunction s:get_SID
let s:on_win = has('win32')
let s:on_mac = has('mac')
" Vimrc augroup
augroup MyVimrc
autocmd!
augroup END
command! -nargs=+ Autocmd autocmd MyVimrc <args>
command! -nargs=+ AutocmdFT autocmd MyVimrc FileType <args>
Autocmd VimEnter,WinEnter .vimrc,.gvimrc,vimrc,gvimrc syn keyword myVimAutocmd Autocmd AutocmdFT contained containedin=vimIsCommand
Autocmd ColorScheme * highlight def link myVimAutocmd vimAutoCmd
" user-defined prefix
let g:mapleader = ','
"バックアップファイルいらない
set nobackup
" 言語設定
language message C
language time C
"自動インデント
set autoindent
"タブが対応する空白の数
set tabstop=4 shiftwidth=4 softtabstop=4
" インデントを shiftwidth の倍数に丸める
set shiftround
"タブの代わりにスペースを使う
set expandtab
AutocmdFT neosnippet,gitconfig setlocal noexpandtab
"長い行で折り返す
set wrap
"ウィンドウの横幅をなるべく30文字以上に
set winwidth=30
"検索が末尾まで進んだら,ファイル先頭につなげる
set wrapscan
"対応する括弧にわずかの間ジャンプする
set showmatch
"カーソルが何行何列目にあるか表示する
set ruler
"最下ウィンドウにステータス行が表示される時
"1: ウィンドウの数が2以上 2:常
set laststatus=2
"スクロール時の余白確保
set scrolloff=5
"いろいろスマート
set smarttab
set cindent
"大文字が入っている時のみ大文字小文字を区別
set ignorecase
set smartcase
"ビープ音OFF
set vb t_vb=
"ホワイトスペース類を表示する
set list
"起動時のメッセージを消す
set shortmess& shortmess+=I
"IMを使う
set noimdisable
"起動時IMEをOFFにする
set iminsert=0 imsearch=0
" 検索結果をハイライト
set hlsearch
" インクリメンタルなマッチング
set incsearch
"コマンドラインでのIM無効化
set noimcmdline
" コマンドラインで cmd window を出すキー
set cedit=<C-c>
"バックスペースでなんでも消せるように
set backspace=indent,eol,start
" 改行時にコメントしない
set formatoptions-=r
set formatoptions-=o
" 行継続で勝手にインデントしない
" let g:vim_indent_cont = 0
" 8進数インクリメントをオフにする
set nrformats-=octal
"ファイル切替時にファイルを隠す
set hidden
"日本語ヘルプを優先的に検索
set helplang=ja,en
" カーソル下の単語を help で調べる
set keywordprg=:help
"OSのクリップボードを使う
set clipboard=unnamed
"矩形選択で自由に移動する
set virtualedit& virtualedit+=block
"改行コードの自動認識
set fileformats=unix,dos,mac
"行を折り返さない
set textwidth=0
"コマンド表示いらない
set noshowcmd
" 自前で用意したものへの path
set path=.,/usr/include,/usr/local/include
" 補完でプレビューウィンドウを開かない
set completeopt=menuone,longest,noselect
" メニューの言語
set langmenu=none
" foldingの設定
set foldenable
set foldmethod=marker
" 読み込んでいるファイルが変更された時自動で読み直す
set autoread
" h と l で行を跨げるようにする
set whichwrap +=h
set whichwrap +=l
" コマンド履歴サイズ
set history=100
" コマンドラインモードの補完を拡張
set wildmenu
" swap ファイル
set directory=~/.vim/swap
if !isdirectory(&directory)
call mkdir(&directory, 'p')
endif
" 編集履歴を保存して終了する
if has('persistent_undo')
set undofile
set undodir=~/.vim/undo
if !isdirectory(&undodir)
call mkdir(&undodir, 'p')
endif
endif
" command-line-window の縦幅
set cmdwinheight=3
" ステータスライン
set rulerformat=%45(%12f%=\ %m%{'['.(&fenc!=''?&fenc:&enc).']'}\ %l-%v\ %p%%\ [%02B]%)
set statusline=%f:\ %{substitute(getcwd(),'.*/','','')}\ %m%=%{(&fenc!=''?&fenc:&enc).':'.strpart(&ff,0,1)}\ %l-%v\ %p%%\ %02B
" リストヘッダ
set formatlistpat&
let &formatlistpat .= '\|^\s*[*+-]\s*'
" spell チェックで日本語をチェックしない
set spelllang=en,cjk
" 折り返しでインデントを保持
if exists('+breakindent')
set breakindent
set breakindentopt=shift:-4
let &showbreak = '>>> '
endif
" 一時ディレクトリではバックアップを取らない
set backupskip=/tmp/*,/private/tmp/*,/var/*
if has('vim_starting')
" インサートモード時に非点滅の縦棒タイプのカーソル
let &t_SI .= "\e[6 q"
" ノーマルモード時に非点滅のブロックタイプのカーソル
let &t_EI .= "\e[2 q"
" 置換モード時に非点滅の下線タイプのカーソル
let &t_SR .= "\e[4 q"
endif
" 一定時間カーソルを移動しないとカーソルラインを表示(ただし,ウィンドウ移動時
" はなぜか切り替わらない
" http://d.hatena.ne.jp/thinca/20090530/1243615055
" vim-lsp の quickpick は選択中のアイテムの表示のために cursorline を使うので,その設定を変更しない
Autocmd CursorMoved,CursorMovedI,WinLeave * noautocmd if &filetype !=# 'lsp-quickpick' | setlocal nocursorline | endif
Autocmd CursorHold,CursorHoldI,WinEnter * noautocmd if &filetype !=# 'lsp-quickpick' | setlocal cursorline | endif
" git config file
Autocmd BufRead,BufNew,BufNewFile gitconfig setlocal ft=gitconfig
" Gnuplot のファイルタイプを設定
Autocmd BufRead,BufNew,BufNewFile *.plt,*.plot,*.gnuplot setlocal ft=gnuplot
" Ruby の guard 用ファイル
Autocmd BufRead,BufNew,BufNewFile Guardfile setlocal ft=ruby
" Swift
Autocmd BufRead,BufNew,BufNewFile *.swift setlocal ft=swift
" Mal,Crisp
Autocmd BufRead,BufNew,BufNewFile *.mal,*.crisp setlocal ft=lisp
" JavaScript tests
Autocmd BufRead,BufNew,BufNewFile *_test.js,*_test.jsx setlocal ft=javascript.test
" Vader
Autocmd BufRead,BufNew,BufNewFile *.vader setlocal ft=vader
" WiX config file
Autocmd BufRead,BufNew,BufNewFile *.wxs setlocal ft=xml
" カーソル位置の復元
Autocmd BufReadPost *
\ if line("'\"") > 1 && line("'\"") <= line("$") |
\ exe "normal! g`\"" |
\ endif
" Hack #202: 自動的にディレクトリを作成する
" http://vim-users.jp/2011/02/hack202/
Autocmd BufWritePre * call s:auto_mkdir(expand('<afile>:p:h'), v:cmdbang)
function! s:auto_mkdir(dir, force) abort
if !isdirectory(a:dir) && (a:force ||
\ input(printf('"%s" does not exist. Create? [y/N]', a:dir)) =~? '^y\%[es]$')
" call mkdir(iconv(a:dir, &encoding, &termencoding), 'p')
call mkdir(a:dir, 'p')
endif
endfunction
" git commit message のときは折りたたまない(diff で中途半端な折りたたみになりがち)
" git commit message のときはスペルをチェックする
AutocmdFT gitcommit setlocal nofoldenable spell
AutocmdFT diff setlocal nofoldenable
" tmux 用の設定
"256 bitカラーモード(for tmux)
if !has('gui_running') && $TMUX !=# ''
set t_Co=256
endif
" カーソル下のハイライトグループを取得
command! -nargs=0 GetHighlightingGroup
\ echo 'hi<' . synIDattr(synID(line('.'), col('.'), 1), 'name') . '>trans<'
\ . synIDattr(synID(line('.'), col('.'), 0), 'name') . '>lo<'
\ . synIDattr(synIDtrans(synID(line('.'), col('.'), 1)), 'name') . '>'
" スクリプトに実行可能属性を自動で付ける
if executable('chmod')
Autocmd BufWritePost * call s:add_permission_x()
function! s:add_permission_x() abort
let file = expand('%:p')
if getline(1) =~# '^#![^[]' && !executable(file)
silent! call vimproc#system('chmod a+x ' . shellescape(file))
endif
endfunction
endif
augroup InitialMessage
autocmd!
" 起動時メッセージ.イヌゥ…
autocmd VimEnter * echo "(U'w') enjoy vimming!"
augroup END
" 一時ウィンドウを閉じる "{{{
function! s:close_temp_windows() abort
let target_filetype = ['unite']
let target_buftype = ['help', 'quickfix', 'nofile', 'terminal', 'acwrite']
let wins = []
let winnr = winnr('$')
while winnr > 0
let bufnr = winbufnr(winnr)
if index(target_filetype, getbufvar(bufnr, '&filetype')) >= 0 ||
\ index(target_buftype, getbufvar(bufnr, '&buftype')) >= 0
call add(wins, winnr)
endif
let winnr -= 1
endwhile
if empty(wins)
return
endif
let prev_winnr = winnr()
try
for winnr in wins
if winbufnr(winnr) != -1
" Note:
" This 'if' statement is necessary because command-line window
" does not allow to use :execute in its window. When current
" window is command-line window, it can be closed properly by
" skipping the :execute.
if winnr() != winnr
execute winnr . 'wincmd w'
endif
wincmd c
endif
endfor
finally
" Back to previous window.
if winnr() !=# prev_winnr && winbufnr(prev_winnr) !=# -1
execute prev_winnr . 'wincmd w'
endif
endtry
endfunction
nnoremap <silent><C-q> :<C-u>call <SID>close_temp_windows()<CR>
"}}}
" vimrc を開く
command! Vimrc execute 'args' $MYVIMRC $MYGVIMRC
" カレントパスをクリプボゥにコピー
command! CopyCurrentPath :call s:copy_current_path()
function! s:copy_current_path() abort
if s:on_win
let c = substitute(expand('%:p'), '\\/', '\\', 'g')
elseif has('unix')
let c = expand('%:p')
endif
if &clipboard =~# 'plus$'
let @+ = c
else
let @* = c
endif
endfunction
" エンコーディング指定オープン
command! -bang -complete=file -nargs=? Utf8 edit<bang> ++enc=utf-8 <args>
command! -bang -complete=file -nargs=? Sjis edit<bang> ++enc=cp932 <args>
command! -bang -complete=file -nargs=? Euc edit<bang> ++enc=eucjp <args>
" 縦幅と横幅を見て help の開き方を決める
command! -nargs=* -complete=help SmartHelp call <SID>smart_help(<q-args>)
nnoremap <silent><Leader>h :<C-u>SmartHelp<Space><C-l>
function! s:smart_help(args) abort
try
if winwidth(0) > winheight(0) * 2
" 縦分割
execute 'vertical topleft help ' . a:args
else
execute 'aboveleft help ' . a:args
endif
catch /^Vim\%((\a\+)\)\=:E149/
echohl ErrorMsg
echomsg 'E149: Sorry, no help for ' . a:args
echohl None
return
endtry
" 横幅を確保できないときはタブで開く
if winwidth(0) < 80
quit
execute 'tab help ' . a:args
endif
silent! AdjustWindowWidth --direction=shrink
endfunction
" インデント
command! -bang -bar -nargs=1 SetIndent
\ execute <bang>0 ? 'set' : 'setlocal'
\ 'tabstop=' . <q-args>
\ 'shiftwidth=' . <q-args>
\ 'softtabstop=' . <q-args>
" 文字数カウント
command! -nargs=0 Wc %s/.//nge
" コンマピリオド置き換え
command! -nargs=0 ReplaceCommaPeriod %s/,/、/g | %s/./。/g
" 基本マッピング {{{
" ; と : をスワップ
noremap ; :
if has('cmdline_hist')
" コマンドラインウィンドウを使う
" Note:
" noremap <Leader>; q:i は使えない
" マクロ記録中に q を記録終了に食われてしまう
" eval() にそのまま通すのは怖いので事前に &cedit をチェック
noremap <silent><expr><Leader>; &cedit =~# '^<C-\a>$' ? ':'.eval('"\'.&cedit.'"').'i' : ':'
else
noremap <Leader>; q:i
endif
noremap @; @:
noremap @: @;
"モードから抜ける
inoremap <expr> j getline('.')[col('.') - 2] ==# 'j' ? "\<BS>\<ESC>" : 'j'
cnoremap <expr> j getcmdline()[getcmdpos() - 2] ==# 'j' ? "\<BS>\<ESC>" : 'j'
" <C-c> をオムニ補完に使う
inoremap <C-c> <C-x><C-o>
" Yの挙動はy$のほうが自然
nnoremap Y y$
" 縦方向は論理移動する
noremap j gj
noremap k gk
" 空行単位移動
nnoremap <silent><C-j> :<C-u>keepjumps normal! }<CR>
nnoremap <silent><C-k> :<C-u>keepjumps normal! {<CR>
vnoremap <C-j> }
vnoremap <C-k> {
" インサートモードに入らずに1文字追加
nnoremap <silent><expr>m 'i'.nr2char(getchar())."\<Esc>"
" gm にマーク機能を退避
noremap gm m
"Esc->Escで検索結果とエラーハイライトをクリア
nnoremap <silent><Esc><Esc> :<C-u>nohlsearch<CR>
" {数値}<Tab>でその行へ移動.それ以外だと通常の<Tab>の動きに
function! s:go_to_line() abort
set number
augroup vimrc-go-to-line
autocmd!
autocmd InsertEnter,CursorHold * set nonumber | autocmd! vimrc-go-to-line
augroup END
return 'G'
endfunction
noremap <expr><Tab> v:count != 0 ? <SID>go_to_line() : "\<Tab>zvzz"
" Tab で補完候補選択
inoremap <silent><expr><Tab> pumvisible() ? "\<C-y>" : "\<Tab>"
" コマンドラインウィンドウ
" 検索後画面の中心に。
nnoremap n nzvzz
nnoremap N Nzvzz
nnoremap * *zvzz
nnoremap # *zvzz
" 空行挿入
function! s:cmd_cr_n(count) abort
for _ in range(a:count)
call append('.', '')
endfor
execute 'normal!' a:count.'j'
endfunction
nnoremap <silent><CR> :<C-u>call <SID>cmd_cr_n(v:count1)<CR>
" スペースを挿入
nnoremap <C-Space> i<Space><Esc><Right>
"Emacsライクなバインディング.ポップアップが出ないように移動.
inoremap <C-e> <END>
vnoremap <C-e> <END>
cnoremap <C-e> <END>
inoremap <C-a> <HOME>
vnoremap <C-a> <HOME>
cnoremap <C-a> <HOME>
inoremap <silent><expr><C-n> pumvisible() ? "\<C-y>\<Down>" : "\<Down>"
inoremap <silent><expr><C-p> pumvisible() ? "\<C-y>\<Up>" : "\<Up>"
inoremap <silent><expr><C-b> pumvisible() ? "\<C-y>\<Left>" : "\<Left>"
inoremap <silent><expr><C-f> pumvisible() ? "\<C-y>\<Right>" : "\<Right>"
cnoremap <C-f> <Right>
cnoremap <C-b> <Left>
inoremap <C-d> <Del>
cnoremap <expr><C-d> len(getcmdline()) == getcmdpos()-1 ? "\<C-d>" : "\<Del>"
" Emacsライク<C-k> http//vim.g.hatena.ne.jp/tyru/20100116
inoremap <silent><expr><C-k> "\<C-g>u".(col('.') == col('$') ? '<C-o>gJ' : '<C-o>D')
cnoremap <C-k> <C-\>e getcmdpos() == 1 ? '' : getcmdline()[:getcmdpos()-2]<CR>
" クリップボードから貼り付け
cnoremap <C-y> <C-r>+
" キャンセル
cnoremap <C-g> <C-u><BS>
"バッファ切り替え
nnoremap <silent><C-n> :<C-u>bnext<CR>
nnoremap <silent><C-p> :<C-u>bprevious<CR>
" <C-w> -> s
nmap s <C-w>
" 現在のウィンドウのみを残す
nnoremap <C-w>O <C-w>o
" バッファを削除
function! s:delete_current_buf() abort
let bufnr = bufnr('%')
bnext
if bufnr == bufnr('%') | enew | endif
silent! bdelete! #
endfunction
nnoremap <C-w>d :<C-u>call <SID>delete_current_buf()<CR>
nnoremap <C-w>D :<C-u>bdelete<CR>
"インサートモードで次の行に直接改行
inoremap <C-j> <Esc>o
"<BS>の挙動
nnoremap <BS> diw
" x でレジスタを使わない
nnoremap x "_x
" カーソルキーでのウィンドウサイズ変更
nnoremap <silent><Down> <C-w>-
nnoremap <silent><Up> <C-w>+
nnoremap <silent><Left> <C-w><
nnoremap <silent><Right> <C-w>>
" ペーストした文字列をビジュアルモードで選択
nnoremap <expr>gp '`['.strpart(getregtype(),0,1).'`]'
" 最後にヤンクしたテキストを貼り付け.
nnoremap P "0P
" indent を下げる
inoremap <C-q> <C-d>
" タブの設定
nnoremap ge :<C-u>tabedit<Space>
nnoremap gn :<C-u>tabnew<CR>
nnoremap <silent>gx :<C-u>tabclose<CR>
nnoremap <silent><A-h> gT
nnoremap <silent><A-l> gt
" クリップボードから貼り付け
inoremap <C-r>+ <C-o>:set paste<CR><C-r>+<C-o>:set nopaste<CR>
" コンマ後には空白を入れる
inoremap , ,<Space>
" 賢く行頭・非空白行頭・行末の移動
nnoremap M g^
nnoremap <silent>H :<C-u>call <SID>move_backward_by_step()<CR>
nnoremap <silent>L :<C-u>call <SID>move_forward_by_step()<CR>
vnoremap M g^
vnoremap M g^
vnoremap H g0
vnoremap L g$
nnoremap gM ^
nnoremap gH 0
nnoremap gL $
vnoremap gM ^
vnoremap gH 0
vnoremap gL $
" スクリーン内移動
nnoremap gh H
nnoremap gl L
nnoremap gm M
vnoremap gh H
vnoremap gl L
vnoremap gm M
" スペルチェック
nnoremap <Leader>s :<C-u>setl spell! spell?<CR>
" 行番号
nnoremap <Leader>nn :<C-u>setl number! number?<CR>
" カーソル付近の文字列で検索(新規ウィンドウ)
nnoremap <C-w>* <C-w>s*
nnoremap <C-w># <C-w>s#
nnoremap <silent><C-w>h :<C-u>call <SID>jump_window_wrapper('h', 'l')<CR>
nnoremap <silent><C-w>j :<C-u>call <SID>jump_window_wrapper('j', 'k')<CR>
nnoremap <silent><C-w>k :<C-u>call <SID>jump_window_wrapper('k', 'j')<CR>
nnoremap <silent><C-w>l :<C-u>call <SID>jump_window_wrapper('l', 'h')<CR>
function! s:jump_window_wrapper(cmd, fallback) abort
let old = winnr()
execute 'normal!' "\<C-w>" . a:cmd
if old == winnr()
execute 'normal!' "999\<C-w>" . a:fallback
endif
endfunction
" 連結時にスペースを入れない
function! s:cmd_gJ() abort
normal! J
if getline('.')[col('.')-1] ==# ' '
normal! "_x
endif
endfunction
nnoremap gJ :<C-u>call <SID>cmd_gJ()<CR>
" コマンドラインウィンドウ設定
function! s:cmdline_window_settings() abort
" コマンドラインウィンドウを閉じられるようにする
nnoremap <silent><buffer>q :<C-u>q<CR>
nnoremap <silent><buffer><Esc> :<C-u>q<CR>
nnoremap <silent><buffer><Esc><Esc> :<C-u>q<CR>
inoremap <silent><buffer><C-g> <Esc>:q<CR>
nnoremap <silent><buffer><CR> A<CR>
endfunction
Autocmd CmdwinEnter * call s:cmdline_window_settings()
" 対応する括弧間の移動
nmap 0 %
" タブ文字を入力
inoremap <C-Tab> <C-v><Tab>
" 畳み込みを開く
nnoremap <expr>h col('.') == 1 && foldlevel(line('.')) > 0 ? 'zc' : 'h'
nnoremap <expr>l foldclosed(line('.')) != -1 ? 'zo' : 'l'
" colorcolumn
nnoremap <expr><Leader>cl ":\<C-u>set colorcolumn=".(&cc == 0 ? v:count == 0 ? virtcol('.') : v:count : 0)."\<CR>"
" help のマッピング
function! s:on_FileType_help_define_mappings() abort
if &l:readonly
" カーソル下のタグへ飛ぶ
nnoremap <buffer>J <C-]>
" 戻る
nnoremap <buffer>K <C-t>
" リンクしている単語を選択する
nnoremap <buffer><silent><Tab> /\%(\_.\zs<Bar>[^ ]\+<Bar>\ze\_.\<Bar>CTRL-.\<Bar><[^ >]\+>\)<CR>
" そのた
nnoremap <buffer>u <C-u>
nnoremap <buffer>d <C-d>
nnoremap <buffer>q :<C-u>q<CR>
endif
endfunction
AutocmdFT help call s:on_FileType_help_define_mappings()
" quickfix のマッピング
function! s:on_FileType_qf_define_mappings() abort
nnoremap <buffer><silent> q :<C-u>cclose<CR>
nnoremap <buffer><silent> j :<C-u>cnext<CR>:copen<CR>
nnoremap <buffer><silent> k :<C-u>cprevious<CR>:copen<CR>
nnoremap <buffer><silent> J :<C-u>cnfile<CR>:copen<CR>
nnoremap <buffer><silent> K :<C-u>cpfile<CR>:copen<CR>
nnoremap <buffer><silent> l :<C-u>clist<CR>
" Clear <CR>
nnoremap <buffer><CR> <CR>
endfunction
AutocmdFT qf call s:on_FileType_qf_define_mappings()
function! s:move_backward_by_step() abort
let col = col('.')
normal! g^
let c = col('.')
if col <= c
normal! g0
endif
if col == col('.')
normal! 0
endif
endfunction
function! s:move_forward_by_step() abort
let col = col('.')
normal! g^
let c = col('.')
if col >= c
normal! g$
endif
if col == col('.')
normal! $
endif
endfunction
if exists(':terminal')
if exists('+termwinkey')
set termwinkey=<Esc>
else
set termkey=<Esc>
endif
function! s:open_terminal() abort
let terms = term_list()
if !empty(terms)
let w = bufwinnr(terms[0])
if w != -1
execute w . 'wincmd w'
else
execute winwidth(0) >= 160 ? 'vsplit' : 'split' '| bufffer' terms[0]
endif
return
endif
let shell = ''
if s:on_win
let shell = ' powershell'
endif
execute 'topleft' winwidth(0) >= 160 ? 'vsplit' : 'split' ' | terminal ++curwin ++close' . shell
endfunction
nnoremap <silent><Space><Space> :<C-u>call <SID>open_terminal()<CR>
" XXX: This kills original <Esc><Esc>, which sends raw '<Esc>' to shell
tmap <Esc><Esc> <Esc>N
" Guard with exists() since it's very new (added at Vim 8.1)
if exists('##TerminalOpen')
Autocmd TerminalOpen * if &buftype ==# 'terminal' | setlocal listchars= | endif
endif
if s:on_win
tnoremap <C-p> <Up>
tnoremap <C-n> <Down>
tnoremap <C-f> <Right>
tnoremap <C-b> <Left>
tnoremap <C-a> <Home>
tnoremap <C-e> <End>
endif
endif
" }}}
"}}}
" 最小限の設定と最小限のプラグインだけ読み込む {{{
" % vim --cmd "g:linda_pp_startup_with_tiny = 1" で起動した時
" または vi という名前の シンボリックリンク越しに vim を起動した時
if get(g:, 'linda_pp_startup_with_tiny', 0)
\ || v:progname ==# 'vi'
\ || !exists('v:version') || v:version < 702
\ || !executable('git')
syntax enable
finish
endif
"}}}
" neobundle.vim の設定 {{{
" neobundle.vim が無ければインストールする
let s:bundles_dir = expand('~/.vim/bundle')
if !isdirectory(s:bundles_dir)
echon 'Installing neobundle.vim...'
if !isdirectory(s:bundles_dir)
call mkdir(s:bundles_dir, 'p')
endif
if !s:on_win
silent !git clone https://github.com/Shougo/neobundle.vim $HOME/.vim/bundle/neobundle.vim
else
" $HOME does not work on cmd.exe
execute 'silent' '!git' 'clone' 'https://github.com/Shougo/neobundle.vim' expand('~/.vim/bundle/neobundle.vim')
endif
echo 'done.'
if v:shell_error
echoerr 'neobundle.vim installation has failed!'
finish
endif
endif
if has('vim_starting')
set rtp+=~/.vim/bundle/neobundle.vim/
endif
call neobundle#begin(expand('~/.vim/bundle'))
if neobundle#load_cache()
" GitHub上のリポジトリ
call neobundle#add('Shougo/neobundle.vim', { 'fetch': 1 })
call neobundle#add('Shougo/vimproc.vim', {
\ 'build' : {
\ 'windows' : 'echo "Please build vimproc manually."',
\ 'cygwin' : 'make -f make_cygwin.mak',
\ 'mac' : 'make -f make_mac.mak',
\ 'unix' : 'make -f make_unix.mak',
\ }
\ })
call neobundle#add('Shougo/neosnippet.vim')
call neobundle#add('rhysd/inu-snippets')
call neobundle#add('thinca/vim-quickrun')
call neobundle#add('vim-jp/vimdoc-ja')
call neobundle#add('kana/vim-textobj-user')
call neobundle#add('thinca/vim-prettyprint')
call neobundle#add('kana/vim-operator-user')
call neobundle#add('rhysd/clever-f.vim')
call neobundle#add('airblade/vim-gitgutter')
call neobundle#add('kana/vim-submode')
call neobundle#add('vim-airline/vim-airline')
call neobundle#add('vim-airline/vim-airline-themes')
call neobundle#add('rhysd/conflict-marker.vim')
call neobundle#add('rhysd/vim-window-adjuster')
call neobundle#add('Shougo/neomru.vim')
call neobundle#add('rhysd/committia.vim')
call neobundle#add('rust-lang/rust.vim')
call neobundle#add('cespare/vim-toml')
call neobundle#add('slim-template/vim-slim')
call neobundle#add('HerringtonDarkholme/yats.vim')
call neobundle#add('rhysd/npm-filetypes.vim')
call neobundle#add('rhysd/github-complete.vim')
call neobundle#add('vim-crystal/vim-crystal')
call neobundle#add('thinca/vim-themis')
call neobundle#add('pangloss/vim-javascript')
call neobundle#add('rhysd/vim-wasm')
call neobundle#add('rhysd/vim-gfm-syntax')
call neobundle#add('ekalinin/Dockerfile.vim')
call neobundle#add('rhysd/y-output.vim')
call neobundle#add('rhysd/vim-goyacc')
call neobundle#add('vim-jp/vim-cpp')
call neobundle#add('othree/html5.vim')
call neobundle#add('hail2u/vim-css3-syntax')
call neobundle#add('w0rp/ale')
call neobundle#add('justinmk/vim-dirvish')
call neobundle#add('tpope/vim-markdown')
call neobundle#add('aklt/plantuml-syntax')
call neobundle#add('machakann/vim-highlightedyank')
call neobundle#add('PProvost/vim-ps1')
call neobundle#add('rhysd/vim-notes-cli')
call neobundle#add('rhysd/git-messenger.vim')
call neobundle#add('prabirshrestha/vim-lsp')
call neobundle#add('rhysd/vim-lsp-ale')
call neobundle#add('ziglang/zig.vim')
call neobundle#add('junegunn/vim-easy-align')
" unite.vim sources
call neobundle#add('Shougo/unite-outline')
call neobundle#add('Shougo/unite-help')
call neobundle#add('thinca/vim-unite-history')
call neobundle#add('rhysd/unite-zsh-cdr.vim')
call neobundle#add('rhysd/unite-ruby-require.vim')
call neobundle#add('ujihisa/unite-colorscheme')
call neobundle#add('rhysd/unite-locate')
call neobundle#add('sorah/unite-ghq')
call neobundle#add('rhysd/unite-go-import.vim')
call neobundle#add('rhysd/unite-oldfiles.vim')
call neobundle#add('rhysd/unite-dirvish.vim')
" カラースキーム
call neobundle#add('rhysd/wallaby.vim')
call neobundle#add('rhysd/vim-color-spring-night')
call neobundle#add('chriskempson/tomorrow-theme', {'rtp' : 'vim'})
call neobundle#add('tomasr/molokai')
call neobundle#add('altercation/vim-colors-solarized')
call neobundle#add('jonathanfilip/vim-lucius')
call neobundle#add('tyrannicaltoucan/vim-quantum')
" For testing
command! -nargs=1 NeoBundleMyPlugin
\ NeoBundle <args>, {
\ 'base' : '~/Develop/github.com/rhysd',
\ 'type' : 'nosync',
\ }
" 読み込みを遅延する
call neobundle#add('Shougo/unite.vim', {
\ 'lazy' : 1,
\ 'autoload' : {
\ 'commands' : [{'name': 'Unite', 'complete' : 'customlist,unite#complete_source'},
\ {'name': 'UniteWithBufferDir', 'complete' : 'customlist,unite#complete_source'},
\ {'name': 'UniteWithCursorWord', 'complete' : 'customlist,unite#complete_source'},
\ {'name': 'UniteWithWithInput', 'complete' : 'customlist,unite#complete_source'}]
\ }
\ })
call neobundle#add('kana/vim-operator-replace', {
\ 'lazy' : 1,
\ 'autoload' : {
\ 'mappings' : '<Plug>(operator-replace)'
\ }
\ })
call neobundle#add('rhysd/vim-operator-trailingspace-killer', {
\ 'lazy' : 1,
\ 'autoload' : {
\ 'mappings' : '<Plug>(operator-trailingspace-killer)'
\ }
\ })
call neobundle#add('rhysd/vim-operator-surround', {
\ 'lazy' : 1,
\ 'depends' : 'tpope/vim-repeat',
\ 'autoload' : {
\ 'mappings' : '<Plug>(operator-surround-'
\ }
\ })
call neobundle#add('tyru/caw.vim', {
\ 'lazy' : 1,
\ 'autoload' : {
\ 'mappings' : ['<Plug>(caw', '<Plug>(operator-caw)']
\ }
\ })
call neobundle#add('vim-scripts/ZoomWin', {
\ 'lazy' : 1,
\ 'autoload' : {
\ 'commands' : 'ZoomWin'
\ }
\ })
call neobundle#add('kana/vim-altr', { 'lazy' : 1 })
call neobundle#add('vim-jp/vital.vim', {
\ 'lazy' : 1,
\ 'autoload' : {
\ 'commands' : ['Vitalize'],
\ },
\ })
call neobundle#add('tyru/open-browser.vim', {
\ 'lazy' : 1,
\ 'autoload' : {
\ 'commands' : ['OpenBrowser', 'OpenBrowserSearch', 'OpenBrowserSmartSearch'],
\ 'mappings' : '<Plug>(openbrowser-',
\ }
\ })
call neobundle#add('tyru/open-browser-github.vim', {
\ 'lazy' : 1,
\ 'depends' : 'tyru/open-browser.vim',
\ 'autoload' : {
\ 'commands' : ['OpenGithubFile', 'OpenGithubIssue', 'OpenGithubPullReq']
\ }
\ })
call neobundle#add('easymotion/vim-easymotion', {
\ 'lazy' : 1,
\ 'autoload' : {
\ 'mappings' : '<Plug>(easymotion-',
\ }
\ })
call neobundle#add('kana/vim-textobj-indent', {
\ 'lazy' : 1,
\ 'depends' : 'kana/vim-textobj-user',
\ 'autoload' : {
\ 'mappings' : [['xo', 'ai'], ['xo', 'aI'], ['xo', 'ii'], ['xo', 'iI']]
\ }
\ })
call neobundle#add('kana/vim-textobj-line', {
\ 'lazy' : 1,
\ 'depends' : 'kana/vim-textobj-user',
\ 'autoload' : {
\ 'mappings' : [['xo', 'al'], ['xo', 'il']]
\ }
\ })
call neobundle#add('rhysd/vim-textobj-wiw', {
\ 'lazy' : 1,
\ 'depends' : 'kana/vim-textobj-user',
\ 'autoload' : {
\ 'mappings' : [['xo', 'am'], ['xo', 'im']]
\ }
\ })
call neobundle#add('sgur/vim-textobj-parameter', {
\ 'lazy' : 1,
\ 'depends' : 'kana/vim-textobj-user',
\ 'autoload' : {
\ 'mappings' : [['xo', 'a,'], ['xo', 'i,']]
\ }
\ })
call neobundle#add('thinca/vim-textobj-between', {
\ 'lazy' : 1,
\ 'depends' : 'kana/vim-textobj-user',
\ 'autoload' : {
\ 'mappings' : [['xo', 'af'], ['xo', 'if'], ['xo', '<Plug>(textobj-between-']]
\ }
\ })
call neobundle#add('rhysd/vim-textobj-word-column', {
\ 'lazy' : 1,
\ 'depends' : 'kana/vim-textobj-user',
\ 'autoload' : {
\ 'mappings' : [['xo', 'av'], ['xo', 'aV'], ['xo', 'iv'], ['xo', 'iV']]
\ }
\ })
call neobundle#add('kana/vim-textobj-entire', {
\ 'lazy' : 1,
\ 'depends' : 'kana/vim-textobj-user',
\ 'autoload' : {
\ 'mappings' : [['xo', 'ae'], ['xo', 'ie']]
\ }
\ })
call neobundle#add('kana/vim-textobj-fold', {
\ 'lazy' : 1,
\ 'depends' : 'kana/vim-textobj-user',
\ 'autoload' : {
\ 'mappings' : [['xo', 'az'], ['xo', 'iz']]
\ }
\ })
call neobundle#add('rhysd/vim-textobj-anyblock', {
\ 'lazy' : 1,
\ 'depends' : 'kana/vim-textobj-user',
\ 'autoload' : {
\ 'mappings' : [['xo', 'ab'], ['xo', 'ib']]
\ }
\ })
call neobundle#add('tpope/vim-fugitive', {
\ 'lazy' : 1,
\ 'autoload' : {
\ 'commands' : ['Gstatus', 'Gcommit', 'Gwrite', 'Gdiff', 'Gblame', 'Git', 'Ggrep']
\ }
\ })
call neobundle#add('haya14busa/vim-asterisk', {
\ 'lazy' : 1,
\ 'autoload' : {
\ 'mappings' : '<Plug>(asterisk-',
\ }
\ })
call neobundle#add('dhruvasagar/vim-table-mode', {
\ 'lazy' : 1,
\ 'autoload' : {
\ 'commands' : ['TableModeToggle', 'TableModeEnable'],
\ }
\ })
call neobundle#add('junegunn/vader.vim', {
\ 'lazy' : 1,
\ 'autoload' : {
\ 'commands' : 'Vader',
\ 'filetypes' : 'vader',
\ }
\ })
" GUI オンリーなプラグイン
call neobundle#add('nathanaelkane/vim-indent-guides', {
\ 'lazy' : 1,
\ 'autoload' : {
\ 'filetypes' : ['haskell', 'python']
\ }
\ })
call neobundle#add('tyru/restart.vim', {
\ 'lazy' : 1,
\ 'autoload' : {
\ 'commands' : 'Restart'
\ }
\ })
call neobundle#add('rhysd/endwize.vim', {
\ 'lazy' : 1,
\ 'autoload' : {
\ 'filetypes' : ['ruby', 'vim', 'sh', 'zsh', 'c', 'cpp', 'lua', 'dachs', 'vimspec']
\ }
\ })
call neobundle#add('hotwatermorning/auto-git-diff', {
\ 'lazy' : 1,
\ 'autoload' : {
\ 'filetypes' : 'gitrebase',
\ }
\ })
" Haskell 用プラグイン
call neobundle#add('ujihisa/unite-haskellimport', {
\ 'lazy' : 1,
\ 'autoload' : {'filetypes' : 'haskell'}
\ })
call neobundle#add('eagletmt/unite-haddock', {
\ 'lazy' : 1,
\ 'autoload' : {'filetypes' : 'haskell'}
\ })
" Python