forked from tmsanrinsha/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc
1078 lines (937 loc) · 37.8 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
" neobundle.vim {{{
" ==============================================================================
" https://github.com/Shougo/neobundle.vim
" http://vim-users.jp/2011/10/hack238/
if filereadable(expand('~/.vim/bundle/neobundle.vim/autoload/neobundle.vim'))
set nocompatible "vi互換にしない
filetype off " required!
if has('vim_starting')
set runtimepath+=~/.vim/bundle/neobundle.vim/
endif
call neobundle#rc(expand('~/.vim/bundle/'))
" let NeoBundle manage NeoBundle
" required!
NeoBundle 'Shougo/neobundle.vim'
" recommended to install
NeoBundle 'Shougo/vimproc', {
\ 'build' : {
\ 'windows' : 'echo "Sorry, cannot update vimproc binary file in Windows."',
\ 'cygwin' : 'make -f make_cygwin.mak',
\ 'mac' : 'make -f make_mac.mak',
\ 'unix' : 'make -f make_unix.mak',
\ },
\ }
NeoBundle 'Shougo/unite.vim'
NeoBundle 'Shougo/vimfiler'
NeoBundle 'Shougo/vimshell'
" 補完候補の自動表示
NeoBundle 'Shougo/neocomplcache'
" スニペット補完
NeoBundle 'Shougo/neosnippet'
NeoBundle 'honza/snipmate-snippets'
" http://archiva.jp/web/tool/vim_grep2.html
NeoBundle 'thinca/vim-qfreplace'
NeoBundle 'thinca/vim-quickrun'
" 部分的に別バッファで編集
NeoBundle 'thinca/vim-partedit'
" コマンドモードをEmacsキーバインドにする
"NeoBundle 'houtsnip/vim-emacscommandline'
NeoBundle 'tmsanrinsha/vim-emacscommandline', { 'type__protocol' : 'ssh' }
" Vimperatorのクイックヒント風にカーソル移動
NeoBundle 'Lokaltog/vim-easymotion'
" ファイルを保存時にシンタックスのチェック
" https://github.com/scrooloose/syntastic
NeoBundle 'scrooloose/syntastic'
NeoBundle 'kana/vim-textobj-user'
NeoBundle 'kana/vim-textobj-indent'
NeoBundle 'Align'
NeoBundle "tyru/caw.vim"
" ミニバッファにバッファ一覧を表示
" https://github.com/fholgado/minibufexpl.vim
NeoBundle 'fholgado/minibufexpl.vim'
" バッファを閉じた時、ウィンドウのレイアウトが崩れないようにする
" https://github.com/rgarver/Kwbd.vim
NeoBundle 'rgarver/Kwbd.vim'
" ステータスラインをカスタマイズ
" https://github.com/Lokaltog/vim-powerline
NeoBundle 'Lokaltog/vim-powerline'
" sudo権限でファイルを開く・保存
" http://www.vim.org/scripts/script.php?script_id=729
NeoBundle 'sudo.vim'
" ヤンクの履歴を選択してペースト
" http://www.vim.org/scripts/script.php?script_id=1234
NeoBundle 'YankRing.vim'
" colorscheme
"NeoBundle 'tomasr/molokai'
NeoBundle 'vim-scripts/wombat256.vim'
NeoBundle 'altercation/vim-colors-solarized'
NeoBundle 'chriskempson/vim-tomorrow-theme'
" http://www.vim.org/scripts/script.php?script_id=1732
NeoBundle 'rdark'
" http://www.vim.org/scripts/script.php?script_id=2536
NeoBundle 'jonathanfilip/vim-lucius'
let g:lucius_contrast_bg = 'high'
" confluenceのシンタックスファイル
NeoBundle 'confluencewiki.vim'
" tmuxのシンタックスファイル
NeoBundle 'zaiste/tmux.vim'
" 自分で修正したプラグイン
" https://github.com/tmsanrinsha/vim
NeoBundle 'tmsanrinsha/vim'
"NeoBundle 'thinca/vim-showtime'
"NeoBundle 'pocket7878/presen-vim'
"NeoBundle 'mattn/multi-vim'
" NeoBundle 'thinca/vim-ref', {'type' : 'nosync', 'rev' : '91fb1b' }
"NeoBundle 'L9'
"NeoBundle 'FuzzyFinder'
"NeoBundle 'rails.vim'
"" non github repos ----------------------------------------------------------
"NeoBundle 'git://git.wincent.com/command-t.git'
"" non git repos
"NeoBundle 'http://svn.macports.org/repository/macports/contrib/mpvim/'
"NeoBundle 'https://bitbucket.org/ns9tks/vim-fuzzyfinder'
filetype plugin indent on " required!
" Brief help
" :NeoBundleList - list configured bundles
" :NeoBundleInstall(!) - install(update) bundles
" :NeoBundleClean(!) - confirm(or auto-approve) removal of unused bundles
" :Unite neobundle/install:!
" :Unite neobundle/install:neocomplcache
" :Unite neobundle/install:neocomplcache:unite.vim
" Installation check.
if neobundle#exists_not_installed_bundles()
echomsg 'Not installed bundles : ' .
\ string(neobundle#get_not_installed_bundle_names())
echomsg 'Please execute ":NeoBundleInstall" command.'
"finish
endif
else
set nocompatible "vi互換にしない
filetype plugin indent on
endif
"}}}
" Pluginの有無をチェックする関数 {{{
" ==============================================================================
" http://yomi322.hateblo.jp/entry/2012/06/20/225559
function! s:has_plugin(plugin)
return !empty(globpath(&runtimepath, 'plugin/' . a:plugin . '.vim'))
\ || !empty(globpath(&runtimepath, 'autoload/' . a:plugin . '.vim'))
\ || !empty(globpath(&runtimepath, 'colors/' . a:plugin . '.vim'))
endfunction
"}}}
" 表示 {{{
" ==============================================================================
set showmode "現在のモードを表示
set showcmd "コマンドを表示
set number
set ruler
set cursorline
set list listchars=tab:>-,trail:_ "タブと行末の空白の表示
set t_Co=256 " 256色
scriptencoding utf-8
"" アンドゥの履歴をファイルに保存し、Vim を一度終了したとしてもアンドゥやリドゥを行えるようにする
"if has('persistent_undo')
" set undofile
" if !isdirectory(expand('~/.vimundo'))
" call mkdir(expand('~/.vimundo'))
" endif
" set undodir=~/.vimundo
"endif
" カラースキーム {{{
" ------------------------------------------------------------------------------
if s:has_plugin('molokai')
colorscheme molokai
else
colorscheme default
endif
"colorscheme molokai
"set background=dark
"let g:molokai_original = 1
"set background=light
"let g:solarized_termcolors=256
"colorscheme solarized
augroup colerscheme
autocmd!
" 修正
"autocmd ColorScheme *
" \ highlight Normal ctermbg=none
" \| highlight Visual ctermbg=27
" \| highlight Folded ctermfg=67 ctermbg=16
" \| highlight Comment ctermfg=246 cterm=none guifg=#9c998e gui=italic
" \| highlight Todo ctermfg=231 ctermbg=232 cterm=bold
" 全角スペースをハイライト (Vimテクニックバイブル1-11)
" scriptencoding utf-8が必要
autocmd ColorScheme * highlight IdeographicSpace term=underline ctermbg=67 guibg=#465457
autocmd VimEnter,WinEnter * match IdeographicSpace / /
augroup END
"}}}
"}}}
" タブ・インデント {{{
" ==============================================================================
"ファイル内の <Tab> が対応する空白の数
set tabstop=4
"<Tab> の挿入や <BS> の使用等の編集操作をするときに、<Tab> が対応する空白の数
set softtabstop=4
"インデントの各段階に使われる空白の数
set shiftwidth=4
set expandtab
"新しい行のインデントを現在行と同じくする
set autoindent
set smartindent
"}}}
" ステータスライン {{{
" ==============================================================================
" 最下ウィンドウにいつステータス行が表示されるかを設定する。
" 0: 全く表示しない
" 1: ウィンドウの数が2以上のときのみ表示
" 2: 常に表示
set laststatus=2
"set statusline=%f%=%m%r[%{(&fenc!=''?&fenc:&enc)}][%{&ff}][%Y][%v,%l]\ %P
"set statusline=%f%=%<%m%r[%{(&fenc!=''?&fenc:&enc)}][%{&ff}][%Y][%v,%l/%L]
"}}}
" Mapping {{{
" ==============================================================================
"ttimeout: 端末のキーコードについてタイムアウトする
set timeout timeoutlen=3000 ttimeoutlen=10
"set notimeout " マッピングについてタイムアウトしない
if !has('gui_running')
" https://github.com/cpfaff/vim-my-setup/blob/master/vimrc
" setup for alt and meta key mappings
for i in range(32,126)
let c = nr2char(i)
if c==' '
set <M-Space>=<Esc><Space>
elseif c=='|' || c=='"'
exec "set <M-\\".c.">=\<Esc>\\".c
elseif c=='>' || c=='['
"set <M-\>>=\<Esc>> Meta->に対してsetできない
"set <M-[>=\<Esc>[ これがあるとvim起動した後、2cが打たれる
else
exec "set <M-".c.">=\<Esc>".c
endif
endfor
" <C-Tab><S-C-Tab>など、ターミナル上で定義されていないキーを設定するためのトリック
" http://vim.wikia.com/wiki/Mapping_fast_keycodes_in_terminal_Vim
" MapFastKeycode: helper for fast keycode mappings
" makes use of unused vim keycodes <[S-]F15> to <[S-]F37>
function! <SID>MapFastKeycode(key, keycode)
if s:fast_i == 46
echohl WarningMsg
echomsg "Unable to map ".a:key.": out of spare keycodes"
echohl None
return
endif
let vkeycode = '<'.(s:fast_i/23==0 ? '' : 'S-').'F'.(15+s:fast_i%23).'>'
exec 'set '.vkeycode.'='.a:keycode
exec 'map '.vkeycode.' '.a:key
let s:fast_i += 1
endfunction
let s:fast_i = 0
call <SID>MapFastKeycode('<C-Tab>', "[27;5;9~")
call <SID>MapFastKeycode('<S-C-Tab>', "[27;6;9~")
endif
inoremap jj <ESC>
nnoremap Y y$
"}}}
" バッファ {{{
" ==============================================================================
nnoremap <M-n> :bn<CR>
nnoremap <M-p> :bp<CR>
nnoremap <M-1> :b1<CR>
nnoremap <M-2> :b2<CR>
nnoremap <M-3> :b3<CR>
nnoremap <M-4> :b4<CR>
nnoremap <M-5> :b5<CR>
nnoremap <M-6> :b6<CR>
nnoremap <M-7> :b7<CR>
nnoremap <M-8> :b8<CR>
nnoremap <M-9> :b9<CR>
nnoremap <M-0> :b10<CR>
"変更中のファイルでも、保存しないで他のファイルを表示
set hidden
" bclose.vim
" バッファを閉じた時、ウィンドウのレイアウトが崩れないようにする
" https://github.com/rgarver/Kwbd.vim
" set hiddenを設定しておく必要あり
if filereadable(expand('~/.vim/bundle/Kwbd.vim/plugin/bclose.vim'))
nmap <Leader>bd <Plug>Kwbd
endif
"}}}
" window {{{
" ==============================================================================
"nnoremap <M-h> <C-w>h
"nnoremap <M-j> <C-w>j
"nnoremap <M-k> <C-w>k
"nnoremap <M-l> <C-w>l
nnoremap <M--> <C-w>-
nnoremap <M-;> <C-w>+
nnoremap <M-,> <C-w>>
nnoremap <M-.> <C-w><
nnoremap <M-0> <C-w>=
nnoremap <C-w>; <C-w>p
" 常にカーソル行を真ん中に
"set scrolloff=999
"縦分割されたウィンドウのスクロールを同期させる
"同期させたいウィンドウ上で<F12>を押せばおk
"解除はもう一度<F12>を押す
"横スクロールも同期させたい場合はこちら
"http://ogawa.s18.xrea.com/fswiki/wiki.cgi?page=Vim%A4%CE%A5%E1%A5%E2
nnoremap <F12> :set scrollbind!<CR>
"}}}
" タブ {{{
" ==============================================================================
" いつタブページのラベルを表示するかを指定する。
" 0: 表示しない
" 1: 2個以上のタブページがあるときのみ表示
" 2: 常に表示
set showtabline=1
nnoremap [TAB] <Nop>
nmap <C-T> [TAB]
nnoremap [TAB]c :tabnew<CR>
nnoremap [TAB]q :tabc<CR>
nnoremap <C-Tab> :tabn<CR>
nnoremap <S-C-Tab> :tabp<CR>
nnoremap [TAB]1 :1tabn<CR>
nnoremap [TAB]2 :2tabn<CR>
nnoremap [TAB]3 :3tabn<CR>
nnoremap [TAB]4 :4tabn<CR>
nnoremap [TAB]5 :5tabn<CR>
nnoremap [TAB]6 :6tabn<CR>
nnoremap [TAB]7 :7tabn<CR>
nnoremap [TAB]8 :8tabn<CR>
nnoremap [TAB]9 :9tabn<CR>
nnoremap [TAB]0 :10tabn<CR>
"}}}
" コマンドモード {{{
" ==============================================================================
" 補完 {{{
" ------------------------------------------------------------------------------
" set wildmenu "コマンド入力時にTabを押すと補完メニューを表示する(リスト表示の方が好みなのでコメントアウト)
"
" コマンドモードの補完をシェルコマンドの補完のようにする
" http://vim-jp.org/vimdoc-ja/options.html#%27wildmode%27
" <TAB>で共通する最長の文字列まで補完して一覧表示
" 再度<Tab>を打つと候補を選択。<S-Tab>で逆
set wildmode=list:longest,full
"}}}
"前方一致をCtrl+PとCtrl+Nで
cnoremap <C-P> <UP>
cnoremap <C-N> <DOWN>
set history=100000 "保存する履歴の数
"}}}
" 検索 {{{
" ==============================================================================
set incsearch
set ignorecase "検索パターンの大文字小文字を区別しない
set smartcase "検索パターンに大文字を含んでいたら大文字小文字を区別する
set nohlsearch "検索結果をハイライトしない
" ESCキー2度押しでハイライトのトグル
nnoremap <Esc><Esc> :set hlsearch!<CR>
"ヴィビュアルモードで選択した範囲だけ検索
vnoremap <Leader>/ <ESC>/\%V
vnoremap <Leader>? <ESC>?\%V
"}}}
" ビジュアルモード {{{
" =============================================================================
vnoremap <C-a> vggVG
" vipで選択後、IやAで挿入できるようにする {{{
" -----------------------------------------------------------------------------
" http://labs.timedia.co.jp/2012/10/vim-more-useful-blockwise-insertion.html
vnoremap <expr> I <SID>force_blockwise_visual('I')
vnoremap <expr> A <SID>force_blockwise_visual('A')
function! s:force_blockwise_visual(next_key)
if mode() ==# 'v'
return "\<C-v>" . a:next_key
elseif mode() ==# 'V'
return "\<C-v>0o$" . a:next_key
else " mode() ==# "\<C-v>"
return a:next_key
endif
endfunction
"}}}
"}}}
" ディレクトリ・ファイル {{{
" ==============================================================================
"augroup CD
" autocmd!
" autocmd BufEnter * execute ":lcd " . expand("%:p:h")
"augroup END
" 現在編集中のファイルのディレクトリをカレントディレクトリにする
nnoremap <silent><Leader>gc :cd %:h<CR>
" 現在編集中のファイルのフルパスを表示する
nnoremap <silent><Leader>fp :echo expand("%:p")<CR>
"}}}
" paste {{{
" ==============================================================================
"pasteモードのトグル。autoindentをonにしてペーストすると
"インデントが入った文章が階段状になってしまう。
"pasteモードではautoindentが解除されそのままペーストできる
set pastetoggle=<F11>
inoremap <C-r>* <C-o>:set paste<CR><C-r>*<C-o>:set nopaste<CR>
"Tera TermなどのBracketed Paste Modeをサポートした端末では
"以下の設定で、貼り付けるとき自動的にpasteモードに切り替えてくれる。
"http://sanrinsha.lolipop.jp/blog/2011/11/%E3%80%8Cvim-%E3%81%8B%E3%82%89%E3%81%AE%E5%88%B6%E5%BE%A1%E3%82%B7%E3%83%BC%E3%82%B1%E3%83%B3%E3%82%B9%E3%81%AE%E4%BD%BF%E7%94%A8%E4%BE%8B%E3%80%8D%E3%82%92screen%E4%B8%8A%E3%81%A7%E3%82%82%E4%BD%BF.html
"if &term =~ "xterm" && v:version > 603
" "for screen
" if &term == "xterm-256color"
" let &t_SI = &t_SI . "\eP\e[?2004h\e\\"
" let &t_EI = "\eP\e[?2004l\e\\" . &t_EI
" let &pastetoggle = "\e[201~"
" else
" let &t_SI .= &t_SI . "\e[?2004h"
" let &t_EI .= "\e[?2004l" . &t_EI
" let &pastetoggle = "\e[201~"
" endif
"
" function! XTermPasteBegin(ret)
" set paste
" return a:ret
" endfunction
"
" imap <special> <expr> <Esc>[200~ XTermPasteBegin("")
"endif
"}}}
" カーソル {{{
" ==============================================================================
set virtualedit=block " 矩形選択でカーソル位置の制限を解除
"カーソルを表示行で移動する。
nnoremap j gj
vnoremap j gj
nnoremap k gk
vnoremap k gk
nnoremap <down> gj
vnoremap <down> gj
nnoremap <up> gk
vnoremap <up> gk
nnoremap 0 g0
vnoremap 0 g0
nnoremap $ g$
vnoremap $ g$
" backspaceキーの挙動を設定する
" " indent : 行頭の空白の削除を許す
" " eol : 改行の削除を許す
" " start : 挿入モードの開始位置での削除を許す
set backspace=indent,eol,start
" <C-u>, <C-w>した文字列をアンドゥできるようにする
" http://vim-users.jp/2009/10/hack81/
inoremap <C-u> <C-g>u<C-u>
inoremap <C-w> <C-g>u<C-w>
" カーソルを行頭、行末で止まらないようにする。
" http://vimwiki.net/?'whichwrap'
"set whichwrap=b,s,h,l,<,>,[,],~
"カーソルの形状の変化
"http://sanrinsha.lolipop.jp/blog/2011/11/%E3%80%8Cvim-%E3%81%8B%E3%82%89%E3%81%AE%E5%88%B6%E5%BE%A1%E3%82%B7%E3%83%BC%E3%82%B1%E3%83%B3%E3%82%B9%E3%81%AE%E4%BD%BF%E7%94%A8%E4%BE%8B%E3%80%8D%E3%82%92screen%E4%B8%8A%E3%81%A7%E3%82%82%E4%BD%BF.html
"if &term == "xterm-256color" && v:version > 603
" "let &t_SI .= "\eP\e[3 q\e\\"
" let &t_SI .= "\eP\e[?25h\e[5 q\e\\"
" let &t_EI .= "\eP\e[1 q\e\\"
"elseif &term == "xterm" && v:version > 603
" "let &t_SI .= "\e[3 q"
" let &t_SI .= "\e[?25h\e[5 q"
" let &t_EI .= "\e[1 q"
"endif
"}}}
" カッコ・タグの対応 {{{
" ==============================================================================
set showmatch matchtime=1 "括弧の対応
runtime macros/matchit.vim "HTML tag match
"}}}
" vimdiff {{{
" ==============================================================================
nnoremap [VIMDIFF] <Nop>
nmap <Leader>d [VIMDIFF]
nnoremap <silent> [VIMDIFF]t :diffthis<CR>
nnoremap <silent> [VIMDIFF]u :diffupdate<CR>
nnoremap <silent> [VIMDIFF]o :diffoff<CR>
nnoremap <silent> [VIMDIFF]T :windo diffthis<CR> <C-w><C-w>
nnoremap <silent> [VIMDIFF]O :windo diffthis<CR> <C-w><C-w>
nnoremap <silent> [VIMDIFF]U :windo diffupdate<CR> <C-w><C-w>
nnoremap [VIMDIFF]s :vertical diffsplit<space>
"}}}
" Manual {{{
" ==============================================================================
":Man <man>でマニュアルを開く
runtime ftplugin/man.vim
nmap K <Leader>K
"コマンドラインでmanを使ったとき、vimの:Manで見るようにするための設定
"http://vim.wikia.com/wiki/Using_vim_as_a_man-page_viewer_under_Unix
".zshrc .bashrc等にも記述が必要
let $PAGER=''
"}}}
" vimrcの編集 {{{
" ==============================================================================
" http://vim-users.jp/2009/09/hack74/
" .vimrcと.gvimrcの編集
nnoremap [VIMRC] <Nop>
nmap <Leader>v [VIMRC]
nnoremap <silent> [VIMRC]e :<C-u>edit $MYVIMRC<CR>
nnoremap <silent> [VIMRC]E :<C-u>edit $MYGVIMRC<CR>
" Load .gvimrc after .vimrc edited at GVim.
nnoremap <silent> [VIMRC]r :<C-u>source $MYVIMRC \| if has('gui_running') \| source $MYGVIMRC \| endif<CR>
nnoremap <silent> [VIMRC]R :<C-u>source $MYGVIMRC<CR>
""vimrc auto update
"augroup MyAutoCmd
" autocmd!
" " nested: autocmdの実行中に更に別のautocmdを実行する
" autocmd BufWritePost .vimrc nested source $MYVIMRC
" " autocmd BufWritePost .vimrc RcbVimrc
"augroup END
"}}}
" gf(goto file)の設定 {{{
" ==============================================================================
" http://sanrinsha.lolipop.jp/blog/2012/01/vim%E3%81%AEgf%E3%82%92%E6%94%B9%E8%89%AF%E3%81%97%E3%81%A6%E3%81%BF%E3%82%8B.html
" ファイルの検索の範囲の変更
augroup htmlInclude
autocmd!
autocmd FileType html setlocal includeexpr=substitute(v:fname,'^\\/','','')
augroup END
set path+=./;/
"}}}
" 文字コード {{{
" ==============================================================================
set encoding=utf-8
set fileencoding=utf-8
" ファイルのエンコードの判定を前から順番にする
" ファイルを読み込むときに 'fileencodings' が "ucs-bom" で始まるならば、
" BOM が存在するかどうかが調べられ、その結果に従って 'bomb' が設定される。
" http://vim-jp.org/vimdoc-ja/options.html#%27fileencoding%27
" 以下はVimテクニックバイブル「2-7ファイルの文字コードを変換する」に書いてあるfileencodings。
" ただし2つあるeuc-jpの2番目を消した
if has("win32") || has("win64")
set fileencodings=iso-2222-jp-3,iso-2022-jp,euc-jisx0213,euc-jp,utf-8,ucs-bom,eucjp-ms,cp932
else
" 上の設定はたまに誤判定をするので、UNIX上で開く可能性があるファイルのエンコードに限定
set fileencodings=ucs-boms,utf-8,euc-jp
endif
"□や○の文字があってもカーソル位置がずれないようにする
set ambiwidth=double
"}}}
" マウス {{{
" ==============================================================================
" Enable mouse support.
" Ctrlを押しながらマウスをを使うとmouse=aをセットしてないときの挙動になる
set mouse=a
" For screen, tmux
if &term == "xterm-256color"
augroup MyAutoCmd
autocmd VimLeave * :set mouse=
augroup END
" screenでマウスを使用するとフリーズするのでその対策
" Tere Termだと自動で認識されているかも
" http://slashdot.jp/journal/514186/vim-%E3%81%A7%E3%81%AE-xterm-%E3%81%AE%E3%83%90%E3%83%BC%E3%82%B8%E3%83%A7%E3%83%B3%E3%81%AE%E8%87%AA%E5%8B%95%E8%AA%8D%E8%AD%98
set ttymouse=xterm2
endif
if has('gui_running')
" Show popup menu if right click.
set mousemodel=popup
" Don't focus the window when the mouse pointer is moved.
set nomousefocus
" Hide mouse pointer on insert mode.
set mousehide
endif
"}}}
" printing {{{
set printoptions=wrap:y,number:y,header:0
set printfont=Andale\ Mono:h12:cUTF8
"}}}
" Syntax {{{
" ==============================================================================
syntax enable
set foldmethod=marker
" Vimテクニックバイブル1-13
" PHPプログラムの構文チェック
" http://d.hatena.ne.jp/i_ogi/20070321/1174495931
"augroup phpsyntaxcheck
" autocmd!
" autocmd FileType php set makeprg=php\ -l\ % | set errorformat=%m\ in\ %f\ on\ line\ %l
" "autocmd BufWrite *.php w !php -l 2>&1 | sed -e 's/\(.*Errors.*\)/[31m\1[0m/g'
" autocmd BufWrite *.php w | make
"augroup END
"http://d.hatena.ne.jp/Cside/20110805/p1に構文チェックを非同期にやる方法が書いてある
"}}}
" Quickfix {{{
" ==============================================================================
" show quickfix automatically
augroup quickfix
autocmd!
"autocmd QuickfixCmdPost * if !empty(getqflist()) | cwindow | lwindow | endif
"autocmd QuickfixCmdPost * cwindow | lwindow
augroup END
"}}}
" >>>> filetype >>>> {{{
" HTML {{{
" ==============================================================================
" HTML Key Mappings for Typing Character Codes: {{{
" ------------------------------------------------------------------------------
" * http://www.stripey.com/vim/html.html
" * https://github.com/sigwyg/dotfiles/blob/8c70c4032ebad90a8d92b76b1c5d732f28559e40/.vimrc
"
" |--------------------------------------------------------------------
" |Keys |Insert |For |Comment
" |---------|---------|-----|-------------------------------------------
" |\& |& |& |ampersand
" |\< |< |< |less-than sign
" |\> |> |> |greater-than sign
" |\. |· |・ |middle dot (decimal point)
" |\? |— |? |em-dash
" |\2 |“ |“ |open curved double quote
" |\" |” |” |close curved double quote
" |\` |‘ |‘ |open curved single quote
" |\' |’ |’ |close curved single quote (apostrophe)
" |\` |` |` |OS-dependent open single quote
" |\' |' |' |OS-dependent close or vertical single quote
" |\<Space> | | |non-breaking space
" |---------------------------------------------------------------------
"
augroup MapHTMLKeys
autocmd!
autocmd FileType html call MapHTMLKeys()
function! MapHTMLKeys()
inoremap <buffer> \\ \
inoremap <buffer> \& &
inoremap <buffer> \< <
inoremap <buffer> \> >
inoremap <buffer> \. ・
inoremap <buffer> \- —
inoremap <buffer> \<Space>
inoremap <buffer> \` ‘
inoremap <buffer> \' ’
inoremap <buffer> \2 “
inoremap <buffer> \" ”
endfunction " MapHTMLKeys()
augroup END
"}}}
" input </ to auto close tag on XML {{{
" ------------------------------------------------------------------------------
" https://github.com/sorah/config/blob/master/vim/dot.vimrc
"augroup MyXML
" autocmd!
" autocmd Filetype xml inoremap <buffer> </ </<C-x><C-o>
" autocmd Filetype html inoremap <buffer> </ </<C-x><C-o>
"augroup END
"}}}
"}}}
" PHP {{{
" ==============================================================================
let php_sql_query=1 " 文字列中のSQLをハイライトする
let php_htmlInStrings=1 " 文字列中のHTMLをハイライトする
let php_noShortTags = 1 " ショートタグ (<?を無効にする→ハイライト除外にする)
"let php_folding = 0 " クラスと関数の折りたたみ(folding)を有効にする (重い)
" augroup php
" autocmd!
" au Syntax php set foldmethod=syntax
" augroup END
"}}}
" MySQL {{{
" ==============================================================================
" Editorの設定
" http://lists.ccs.neu.edu/pipermail/tipz/2003q2/000030.html
augroup mysqlEditor
autocmd!
autocmd BufRead /var/tmp/sql* setlocal filetype=mysql
augroup END
"}}}
" apache {{{
" ==============================================================================
augroup apache
autocmd!
autocmd BufRead,BufNewFile *apache*/*.conf setlocal filetype=apache
augroup END
"}}}
" help {{{
" ==============================================================================
set helplang=en,ja
augroup help
autocmd!
autocmd FileType help nnoremap <buffer><silent> q :q<CR>
augroup END
"}}}
" <<<< filetype <<<< }}}
" >>>> Plugin >>>> {{{
" unite {{{
" ==============================================================================
if s:has_plugin('unite')
nnoremap [unite] <Nop>
"nmap <Leader>u [unite]
nmap , [unite]
call unite#custom_default_action('source/bookmark/directory' , 'vimfiler')
" カレントディレクトリ以下のファイル
nnoremap <silent> [unite]f :<C-u>Unite file_rec<CR>
" バッファ
nnoremap <silent> [unite]b :<C-u>Unite buffer<CR>
"レジスタ一覧
nnoremap <silent> [unite]r :<C-u>Unite -buffer-name=register register<CR>
"最近使用したファイル一覧
nnoremap <silent> [unite]m :<C-u>Unite file_mru<CR>j
" ブックマーク
nnoremap <silent> [unite]B :<C-u>Unite bookmark<CR>
" ファイル内検索結果
nnoremap <silent> [unite]l :<C-u>Unite line<CR>
" ヤンク履歴
let g:unite_source_history_yank_enable = 1 "history/yankの有効化
nnoremap <silent> [unite]y :<C-u>Unite history/yank<CR>
let g:unite_source_grep_max_candidates = 1000
"augroup unite
" autocmd!
" autocmd Filetype unite nnoremap
endif
"}}}
" vimfiler {{{
" ==============================================================================
if s:has_plugin('vimfiler')
let g:vimfiler_as_default_explorer = 1
"セーフモードを無効にした状態で起動する
let g:vimfiler_safe_mode_by_default = 0
nnoremap [VIMFILER] <Nop>
nmap <Leader>f [VIMFILER]
nnoremap <silent> [VIMFILER]f :VimFiler<CR>
nnoremap <silent> [VIMFILER]b :VimFilerBufferDir<CR>
nnoremap <silent> [VIMFILER]c :VimFilerCurrentDir<CR>
endif
nnoremap <silent><Leader>gc :cd %:h<CR>
"}}}
" vimshell {{{
" ==============================================================================
if s:has_plugin('vimshell')
nnoremap [VIMSHELL] <Nop>
nmap <leader>H [VIMSHELL]
nnoremap <silent> [VIMSHELL]H :VimShell<CR>
nnoremap <silent> [VIMSHELL]b :VimShellBufferDir<CR>
nnoremap [VIMSHELL]i :VimShellInteractive<Space>
nnoremap <silent> [VIMSHELL]py :VimShellInteractive python<CR>
nnoremap <silent> [VIMSHELL]ph :VimShellInteractive php<CR>
nnoremap <silent> [VIMSHELL]rb :VimShellInteractive irb<CR>
nnoremap <silent> [VIMSHELL]s :VimShellSendString<CR>
" <Leader>ss: 非同期で開いたインタプリタに現在の行を評価させる
"vmap <silent> <Leader>ss :VimShellSendString<CR>
"" 選択中に<Leader>ss: 非同期で開いたインタプリタに選択行を評価させる
"nnoremap <silent> <Leader>ss <S-v>:VimShellSendString<CR>
if has('win32') || has('win64')
" Display user name on Windows.
let g:vimshell_prompt = $USERNAME."% "
else
"let g:vimshell_prompt = $USER . "@" . hostname() . "% "
let g:vimshell_prompt = hostname() . "% "
let g:vimshell_user_prompt = 'fnamemodify(getcwd(), ":~")'
if has('mac')
call vimshell#set_execute_file('html', 'gexe open -a /Applications/Firefox.app/Contents/MacOS/firefox')
call vimshell#set_execute_file('avi,mp4,mpg,ogm,mkv,wmv,mov', 'gexe open -a /Applications/MPlayerX.app/Contents/MacOS/MPlayerX')
endif
endif
"let g:vimshell_right_prompt = 'vimshell#vcs#info("(%s)-[%b] ", "(%s)-[%b|%a] ") . "[" . getcwd() . "]"'
let g:vimshell_max_command_history = 3000
augroup vimshell
autocmd!
autocmd FileType vimshell
\ setlocal nonumber
\| call vimshell#altercmd#define('g', 'git')
\| call vimshell#altercmd#define('l', 'll')
\| call vimshell#altercmd#define('ll', 'ls -l')
"\| call vimshell#hook#add('chpwd', 'my_chpwd', 'g:my_chpwd')
augroup END
"function! g:my_chpwd(args, context)
" call vimshell#execute('ls')
"endfunction
endif
" 参考
" http://d.hatena.ne.jp/joker1007/20111018/1318950377
" }}}
" neocomplcache {{{
" ==============================================================================
if s:has_plugin('neocomplcache') && v:version >= 702
" Disable AutoComplPop.
let g:acp_enableAtStartup = 0
" Use neocomplcache.
let g:neocomplcache_enable_at_startup = 1
" Use smartcase.
let g:neocomplcache_enable_smart_case = 1
" Use camel case completion.
let g:neocomplcache_enable_camel_case_completion = 0
" Use underbar completion.
let g:neocomplcache_enable_underbar_completion = 1
" Set minimum syntax keyword length.
let g:neocomplcache_min_syntax_length = 3
let g:neocomplcache_lock_buffer_name_pattern = '\*ku\*'
" Define dictionary.
let g:neocomplcache_dictionary_filetype_lists = {
\ 'default' : '',
\ 'vimshell' : $HOME.'/.vimshell_hist',
\ 'scheme' : $HOME.'/.gosh_completions'
\ }
" Define keyword.
if !exists('g:neocomplcache_keyword_patterns')
let g:neocomplcache_keyword_patterns = {}
endif
let g:neocomplcache_keyword_patterns['default'] = '\h\w*'
inoremap <expr><C-g> neocomplcache#undo_completion()
inoremap <expr><C-l> neocomplcache#complete_common_string()
" SuperTab like snippets behavior.
"imap <expr><TAB> neocomplcache#sources#snippets_complete#expandable() ? "\<Plug>(neocomplcache_snippets_expand)" : pumvisible() ? "\<C-n>" : "\<TAB>"
" Recommended key-mappings.
" <CR>: close popup and save indent.
inoremap <expr><CR> neocomplcache#smart_close_popup() . "\<CR>"
" <TAB>: completion.
inoremap <expr><TAB> pumvisible() ? "\<C-n>" : "\<TAB>"
" <C-h>, <BS>: close popup and delete backword char.
inoremap <expr><C-h> neocomplcache#smart_close_popup()."\<C-h>"
inoremap <expr><BS> neocomplcache#smart_close_popup()."\<C-h>"
inoremap <expr><C-y> neocomplcache#close_popup()
inoremap <expr><C-e> neocomplcache#cancel_popup()
" AutoComplPop like behavior.
"let g:neocomplcache_enable_auto_select = 1
" Shell like behavior(not recommended).
"set completeopt+=longest
"let g:neocomplcache_enable_auto_select = 1
"let g:neocomplcache_disable_auto_complete = 1
"inoremap <expr><TAB> pumvisible() ? "\<Down>" : "\<TAB>"
"inoremap <expr><CR> neocomplcache#smart_close_popup() . "\<CR>"
" Shell like behavior(my setting)
" complet_common_stringではsmartcaseが効かない
" 余計な候補を出して欲しくないので
" set g:neocomplcache_enable_smart_case = 0と上のほうで設定しておく
" <TAB>で上で設定したneocomplcache#complete_common_string()を呼び出す
"imap <expr><TAB> pumvisible() ? "\<C-l>" : "\<TAB>"
"inoremap <expr><CR> neocomplcache#smart_close_popup() . "\<CR>"
" Enable omni completion.
autocmd FileType css setlocal omnifunc=csscomplete#CompleteCSS
autocmd FileType html,markdown setlocal omnifunc=htmlcomplete#CompleteTags
autocmd FileType javascript setlocal omnifunc=javascriptcomplete#CompleteJS
autocmd FileType php setlocal omnifunc=phpcomplete#CompletePHP
autocmd FileType python setlocal omnifunc=pythoncomplete#Complete
autocmd FileType ruby setlocal omnifunc=rubycomplete#Complete
autocmd FileType xml setlocal omnifunc=xmlcomplete#CompleteTags
" Enable heavy omni completion.
if !exists('g:neocomplcache_omni_patterns')
let g:neocomplcache_omni_patterns = {}
endif
let g:neocomplcache_omni_patterns.ruby = '[^. *\t]\.\w*\|\h\w*::'
let g:neocomplcache_omni_patterns.php = '[^. \t]->\h\w*\|\h\w*::'
let g:neocomplcache_omni_patterns.c = '\%(\.\|->\)\h\w*'
let g:neocomplcache_omni_patterns.cpp = '\h\w*\%(\.\|->\)\h\w*\|\h\w*::'
" Plugin key-mappings.
"imap <C-k> <Plug>(neocomplcache_snippets_expand)
"smap <C-k> <Plug>(neocomplcache_snippets_expand)
" Plugin key-mappings.
imap <C-k> <Plug>(neosnippet_expand_or_jump)
smap <C-k> <Plug>(neosnippet_expand_or_jump)
" SuperTab like snippets behavior.
imap <expr><TAB> neosnippet#expandable() ? "\<Plug>(neosnippet_expand_or_jump)" : pumvisible() ? "\<C-n>" : "\<TAB>"
smap <expr><TAB> neosnippet#expandable() ? "\<Plug>(neosnippet_expand_or_jump)" : "\<TAB>"
" For snippet_complete marker.
if has('conceal')
set conceallevel=2 concealcursor=i
endif
" Tell Neosnippet about the other snippets
let g:neosnippet#snippets_directory='~/.vim/bundle/snipmate-snippets/snippets'
endif
"}}}
" vim-quickrun {{{
" ==============================================================================
if s:has_plugin('quickrun')
let g:quickrun_config = {}
let g:quickrun_config['_'] = {
\ 'runner' : 'vimproc',
\ 'runner/vimproc/updatetime' : 100,
\ 'outputter/buffer/split' : ''
\}
" phpunit {{{
" --------------------------------------------------------------------------
" http://www.karakaram.com/quickrun-phpunit
" http://nishigori.blogspot.jp/2011/08/neocomplcache-phpunit-snippet-tddbc-17.html
augroup QuickRunPHPUnit
autocmd!
autocmd BufWinEnter,BufNewFile *Test.php setlocal filetype=php.phpunit
augroup END
let g:quickrun_config['php.phpunit'] = {
\ 'command' : 'phpunit',
\ 'cmdopt' : '',
\ 'exec' : '%c %o %s'
\}
"}}}
endif
"}}}
" vim-partedit {{{
" =============================================================================
if s:has_plugin('vim-partedit')
let g:partedit#auto_prefix = 0
endif
"}}}
" vim-easymotion {{{
" ==============================================================================
if s:has_plugin('EasyMotion')
"let g:EasyMotion_leader_key = '<Leader>'
let g:EasyMotion_keys = 'asdfgghjkl;:qwertyuiop@zxcvbnm,./1234567890-'
let g:EasyMotion_mapping_f = 'f'
let g:EasyMotion_mapping_F = 'F'