-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc
413 lines (324 loc) · 11 KB
/
.vimrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
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
" 基本設定
"フォントの設定
set guifont=Ricty\ 10
" エンコードの設定
set encoding=utf-8
" ファイルエンコードの設定
set fileencoding=utf-8
" スワップファイル作らない
set noswapfile
" バックアップファイル作らない
set nobackup
" ファイル上書き前のバックアップを作らない
set nowritebackup
" 行番号表示
set nu
" 右下に表示される行・列番号を表示
set ruler
" 自動インデントを有効
set autoindent
" タブの幅
set tabstop=4
" 自動挿入されるインデントの幅
set shiftwidth=4
" タブ入力時の幅
set softtabstop=4
" 閉じ括弧入力時に対応する括弧を強調する
set showmatch
" showmatch設定の秒数(0.1秒単位)
set matchtime=4
" インクリメンタルサーチのON(検索文字入力中から検索)
set incsearch
" 検索語を強調表示
set hlsearch
" 検索がファイル末尾まで進んだら、ファイルの先頭から再び検索
set wrapscan
" 検索文字列の大文字小文字を無視
set ignorecase
" ただし大文字が含まれている場合、それは区別する
set smartcase
" ステータスラインの強制表示
set laststatus=2
" ステータスラインにファイルネームとかいろいろ表示
set statusline=%F%r%h%=
" コマンドラインは2行用意
set cmdheight=2
" コマンドライン補完
set wildmenu wildmode=longest:full,full
" デリートキーの有効化
set t_kD=^?
" バックスペースキーの動作を普通のテキストエディタと同じようにする
set backspace=start,eol,indent
" バックスペースで改行を削除
set backspace=2
" 行頭の余白でTabした時shiftwidthの数だけインデント
set smarttab
" 新しい行で高度なインデントを行う
set smartindent
" 行の先頭や末尾からカーソルキーで移動可にする
set whichwrap=b,s,[,],,~
" 新しいウィンドウを下に開く
set splitbelow
" 新しいウィンドウを右に開く
set splitright
" 長いテキストの折り返し
set wrap
" 自動的に改行が入るのを無効化
set textwidth=0
" カーソルのある行を強調表示
set cursorline
" シンタックスハイライトON
syntax on
" Thanks防ぎ
let &titleold=getcwd()
" 外部でファイルに変更があった時は読み直す
set autoread
" windows環境でフォルダ区切り文字はバックスラッシュの変わりにスラッシュを用いる
set shellslash
" Unicodeで行末が変になる問題を解決
set ambiwidth=double
" 行間での移動をシームレスにする
set whichwrap+=h,l,<,>,[,],b,s
" カーソルを常に画面中央に表示
set scrolloff=999
" 文字がない場所にもカーソルを移動できるようにする
set virtualedit=all
" タブをスペースとして挿入
set expandtab
" コメント行を改行したとき、自動的にコメントを付与するのを禁止する
set fo-=ro
" ビジュアルベルの無効化
set novisualbell
" スクリーンベルの無効化
set visualbell t_vb=
" 不可視文字の表示
set list
" 不可視文字の表示設定
set listchars=tab:>-,trail:-,extends:»,precedes:«,nbsp:%
" ペーストモードをデフォルトでオン
set paste
" キーバインド関係の設定
" 括弧の自動補完
inoremap { {}<LEFT>
inoremap [ []<LEFT>
inoremap ( ()<LEFT>
inoremap " ""<LEFT>
inoremap ' ''<LEFT>
vnoremap { "zdi^V{<C-R>z}<ESC>
vnoremap [ "zdi^V[<C-R>z]<ESC>
vnoremap ( "zdi^V(<C-R>z)<ESC>
vnoremap " "zdi^V"<C-R>z^V"<ESC>
vnoremap ' "zdi'<C-R>z'<ESC>)]})]}
" 検索単語の自動エスケープ
" cnoremap <expr> / (getcmdtype() == '/') '\/' : '/'
" 検索単語が画面の真ん中に来るようにする
nnoremap n nzz
nnoremap N Nzz
nnoremap * *zz
nnoremap # #zz
nnoremap g* g*zz
nnoremap g# g#zz
" 表示行単位で移動させない
nnoremap <Up> gk
nnoremap <Down> gj
nnoremap j gj
nnoremap k gk
" TAB でウィンドウ間を移動
nnoremap <TAB> <C-w>w
" Shift + 矢印でウィンドウサイズを変更
nnoremap <S-Left> <C-w><<CR>
nnoremap <S-Right> <C-w>><CR>
nnoremap <S-Up> <C-w>-<CR>
nnoremap <S-Down> <C-w>+<CR>
" ESCを二回押すことでハイライトを消す
" nmap <silent> <Esc><Esc> :nohlsearch<CR>
" タブ操作関係
nnoremap s <Nop>
nnoremap sj <C-w>j
nnoremap sk <C-w>k
nnoremap sl <C-w>l
nnoremap sh <C-w>h
nnoremap sJ <C-w>J
nnoremap sK <C-w>K
nnoremap sL <C-w>L
nnoremap sH <C-w>H
nnoremap sn gt
nnoremap sp gT
nnoremap sr <C-w>r
nnoremap s= <C-w>=
nnoremap sw <C-w>w
nnoremap so <C-w>_<C-w>|
nnoremap sO <C-w>=
nnoremap sN :<C-u>bn<CR>
nnoremap sP :<C-u>bp<CR>
nnoremap st :<C-u>tabnew<CR>
nnoremap sT :<C-u>Unite tab<CR>
nnoremap ss :<C-u>sp<CR>
nnoremap sv :<C-u>vs<CR>
nnoremap sq :<C-u>q<CR>
nnoremap sQ :<C-u>bd<CR>
nnoremap sb :<C-u>Unite buffer_tab -buffer-name=file<CR>
nnoremap sB :<C-u>Unite buffer -buffer-name=file<CR>
" unite.vim
" インサートモードで開始
let g:unite_enable_start_insert=1
" バッファ一覧
nnoremap <silent> ,ub :<C-u>Unite buffer<CR>
" ファイル一覧
nnoremap <silent> ,uf :<C-u>UniteWithBufferDir -buffer-name=files file<CR>
" レジスタ一覧
nnoremap <silent> ,ur :<C-u>Unite -buffer-name=register register<CR>
" 最近使用したファイル一覧
nnoremap <silent> ,um :<C-u>Unite file_mru<CR>
" 常用セット
nnoremap <silent> ,uu :<C-u>Unite buffer file_mru<CR>
" 全部乗せ
nnoremap <silent> ,ua :<C-u>UniteWithBufferDir -buffer-name=files buffer file_mru bookmark file<CR>
" その他の設定
" PHPのタブを4文字に設定
au filetype php setlocal shiftwidth=4 softtabstop=4 tabstop=4 expandtab
" cakephpの拡張子をhtmlとして認識させる
au BufRead,BufNewFile *.ctp set filetype=html
" HTML, javaScriptのタブを2文字に設定
au filetype html,javascript setlocal shiftwidth=2 softtabstop=2 tabstop=2 expandtab
" 保存時に行末の空白を削除する
"autocmd BufWritePre * :%s/\s\+$//ge
" 保存時にtabをスペースに変換
"autocmd BufWritePre * :%s/\t/ /ge
" vimdiffの色設定
highlight DiffAdd cterm=bold ctermfg=10 ctermbg=22
highlight DiffDelete cterm=bold ctermfg=10 ctermbg=52
highlight DiffChange cterm=bold ctermfg=10 ctermbg=17
highlight DiffText cterm=bold ctermfg=10 ctermbg=21
"php用の設定
let php_sql_query = 1
let php_baselib = 1
let php_htmlInStrings = 1
let php_noShortTags = 1
let php_parent_error_close = 1
"cake用の設定
let g:cakephp_enable_fix_mode = 1
let g:cakephp_app = "/var/www/html/cake/app"
"自動設定
let g:cakephp_enable_auto_mode = 1
" neocomplcacheを起動時に有効化
let g:neocomplcache_enable_at_startup = 1
"スニペットフォルダの指定
"let g:neocomplcache_snippets_dir = $HOME.'/.vim/mysnippets'
let g:neosnippet#snippets_directory=$HOME.'/.vim/mysnippets'
"辞書ファイル指定
autocmd FileType php :set dictionary=~/.vim/dictionary/php.dictionary
"zencoding-vim
let g:user_zen_leader_key = ''
"言語別に対応させる
let g:user_zen_settings = {
\ 'lang' : 'ja',
\ 'html' : {
\ 'filters' : 'html',
\ 'indentation' : ' '
\ },
\ 'css' : {
\ 'filters' : 'fc',
\ },
\}
"}
"MarkDown用の設定
let g:vim_markdown_liquid=1
let g:vim_markdown_frontmatter=1
let g:vim_markdown_math=1
au BufRead,BufNewFile *.{txt,text,md} set filetype=markdown
"coffe用の設定
autocmd FileType coffee setlocal sw=2 sts=2 ts=2 et
au BufRead,BufNewFile,BufReadPre *.coffee set filetype=coffee
" pair close checker.
" from othree vimrc ( http://github.com/othree/rc/blob/master/osx/.vimrc )
function ClosePair(char)
if getline('.')[col('.') - 1] == a:char
return "\<Right>"
else
return a:char
endif
endf
if has("autocmd")
"ファイルタイプの検索を有効にする
filetype plugin on
"そのファイルタイプにあわせたインデントを利用する
filetype indent on
" これらのftではインデントを無効に
"autocmd FileType php filetype indent off
autocmd FileType apache setlocal sw=4 sts=4 ts=4 et
autocmd FileType aspvbs setlocal sw=4 sts=4 ts=4 et
autocmd FileType c setlocal sw=4 sts=4 ts=4 et
autocmd FileType cpp setlocal sw=4 sts=4 ts=4 et
autocmd FileType cs setlocal sw=4 sts=4 ts=4 et
autocmd FileType css setlocal sw=2 sts=2 ts=2 et
autocmd FileType diff setlocal sw=4 sts=4 ts=4 et
autocmd FileType eruby setlocal sw=4 sts=4 ts=4 et
autocmd FileType html setlocal sw=2 sts=2 ts=2 et
autocmd FileType java setlocal sw=4 sts=4 ts=4 et
autocmd FileType javascript setlocal sw=2 sts=2 ts=2 et
autocmd FileType perl setlocal sw=4 sts=4 ts=4 et
autocmd FileType php setlocal sw=4 sts=4 ts=4 et
autocmd FileType python setlocal sw=4 sts=4 ts=4 et
autocmd FileType ruby setlocal sw=2 sts=2 ts=2 et
autocmd FileType haml setlocal sw=2 sts=2 ts=2 et
autocmd FileType sh setlocal sw=4 sts=4 ts=4 et
autocmd FileType sql setlocal sw=4 sts=4 ts=4 et
autocmd FileType vb setlocal sw=4 sts=4 ts=4 et
autocmd FileType vim setlocal sw=2 sts=2 ts=2 et
autocmd FileType wsh setlocal sw=4 sts=4 ts=4 et
autocmd FileType xhtml setlocal sw=4 sts=4 ts=4 et
autocmd FileType xml setlocal sw=4 sts=4 ts=4 et
autocmd FileType yaml setlocal sw=2 sts=2 ts=2 et
autocmd FileType zsh setlocal sw=4 sts=4 ts=4 et
autocmd FileType scala setlocal sw=2 sts=2 ts=2 et
endif
" Dein.vim
if &compatible
set nocompatible
endif
" Add the dein installation directory into runtimepath
set runtimepath+=~/.cache/dein/repos/github.com/Shougo/dein.vim
if dein#load_state('~/.cache/dein')
call dein#begin('~/.cache/dein')
call dein#add('~/.cache/dein')
call dein#add('Shougo/deoplete.nvim')
if !has('nvim')
call dein#add('roxma/nvim-yarp')
call dein#add('roxma/vim-hug-neovim-rpc')
endif
call dein#end()
call dein#save_state()
endif
filetype plugin indent on
syntax enable
" プラグインが実際にインストールされるディレクトリ
let s:dein_dir = expand('~/.cache/dein')
" dein.vim 本体
let s:dein_repo_dir = s:dein_dir . '/repos/github.com/Shougo/dein.vim'
" dein.vim がなければ github から落としてくる
if &runtimepath !~# '/dein.vim'
if !isdirectory(s:dein_repo_dir)
execute '!git clone https://github.com/Shougo/dein.vim' s:dein_repo_dir
endif
execute 'set runtimepath^=' . fnamemodify(s:dein_repo_dir, ':p')
endif
" 設定開始
if dein#load_state(s:dein_dir)
call dein#begin(s:dein_dir)
" プラグインリストを収めた TOML ファイル
" 予め TOML ファイル(後述)を用意しておく
let g:rc_dir = expand('~/.vim/rc')
let s:toml = g:rc_dir . '/dein.toml'
let s:lazy_toml = g:rc_dir . '/dein_lazy.toml'
" TOML を読み込み、キャッシュしておく
call dein#load_toml(s:toml, {'lazy': 0})
call dein#load_toml(s:lazy_toml, {'lazy': 1})
" 設定終了
call dein#end()
call dein#save_state()
endif
" もし、未インストールものものがあったらインストール
if dein#check_install()
call dein#install()
endif