-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit.vim
313 lines (285 loc) · 8.7 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
let g:session_path='~/.config/nvim/myplugins/session.vim'
" 基本設定 {{{1
" モードラインを有効にする
set modeline
" 3行目までをモードラインとして検索する
set modelines=3
"文字コード設定 utf-8"
set encoding=utf-8
set fileencodings=utf-8,iso-2022-jp,euc-jp,sjis
set fileformats=unix,dos,mac
" 一部の全角記号の崩れを解決
set ambiwidth=double
"クリップボードをOSと共有
set clipboard=unnamed,unnamedplus
" バックアップファイルを作らない
" set nobackup
set iminsert=0 imsearch=0
" スワップファイルを作らない
set noswapfile
" 編集中のファイルが変更されたら自動で読み直す
set autoread
" バッファが編集中でもその他のファイルを開けるように
set hidden
" 入力中のコマンドをステータスに表示する
set showcmd
" 改行の自動コメントアウトの無効化
set formatoptions-=o
set formatoptions-=r
"set guicursor=1
" 見た目系
" 行番号を表示
set number
" 現在の行を強調表示
set cursorline
" 現在の行を強調表示(縦)
"set cursorcolumn
" 行末の1文字先までカーソルを移動できるように
set virtualedit=onemore
" インデントはスマートインデント
set smartindent
" ビープ音を可視化
set visualbell
" 括弧入力時の対応する括弧を表示
set showmatch
" カーソルの飛ぶ時間:0.1s
set matchtime=1
" ステータスラインを常に表示
set laststatus=2
" コマンドラインの補完
set wildmode=longest:full,full
" 自動で折りたたまないようにする
let g:vim_markdown_folding_disabled=1
if has('vim_starting')
let &t_SI .= "\e[6 q"
let &t_EI .= "\e[2 q"
let &t_SR .= "\e[4 q"
endif
" Tab系
" 不可視文字を可視化(タブが「?-」と表示される) → indentLineというプラグインを使う
" set list listchars=tab:\?\-
" Tab文字を半角スペースにする
" set expandtab
" 行頭以外のTab文字の表示幅(スペースいくつ分)
set tabstop=4
" 行頭でのTab文字の表示幅
set shiftwidth=4
" 検索系
" 検索文字列が小文字の場合は大文字小文字を区別なく検索する
set ignorecase
" 検索文字列に大文字が含まれている場合は区別して検索する
set smartcase
" 検索文字列入力時に順次対象文字列にヒットさせる
set incsearch
" 検索時に最後まで行ったら最初に戻る
set wrapscan
" 検索語をハイライト表示
set hlsearch
" 検索のハイライトの配色変更
highlight Search ctermfg=4 cterm=reverse
" begin end などを%で移動できるようにする(%の拡張)
source $VIMRUNTIME/macros/matchit.vim
" floatwindowを半透明にする
set winblend=10
" ポップアップを半透明にする
set pumblend=10
" コマンドラインの補完もポップアップにする
set wildoptions=pum
" 標準のvim+gdbデバッグ
" 使わないかなあ...
packadd termdebug
let g:termdebug_wide = 163
"マウスを使用
" set mouse=a
" :CDでカレントディレクトリを変更するコマンド
command! -nargs=? -complete=dir -bang CD call s:ChangeCurrentDir('<args>', '<bang>')
function! s:ChangeCurrentDir(directory, bang)
if a:directory == ''
lcd %:p:h
else
execute 'lcd' . a:directory
endif
if a:bang == ''
pwd
endif
endfunction
" Change current directory.
nnoremap <silent> <Space>cd :<C-u>CD<CR>
" }}}1
" プラグイン {{{1
if &compatible
set nocompatible
endif
"dein.vim(プラグイン管理)の設定
"deinパス設定
let s:dein_dir = expand('~/.cache/dein')
let s:dein_repo_dir = s:dein_dir . '/repos/github.com/Shougo/dein.vim'
let s:toml_dir = expand('~/.config/nvim/dein')
" dein.vim ディレクトリがruntimepathに入っていない場合、追加
if match( &runtimepath, '/dein.vim' ) == -1
" dein_repo_dir で指定した場所に dein.vim が無い場合、git cloneしてくる
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)
call dein#load_toml('~/.config/nvim/dein/dein.toml', {'lazy': 0})
call dein#load_toml('~/.config/nvim/dein/dein_lazy.toml', {'lazy': 1})
" ローカルプラグインの読み込み
" call dein#load_toml('~/.config/nvim/dein/dein_local.toml', {'lazy':0})
" call dein#local('~/.config/nvim/myplugins',
" \ {},
" \ [
" \ 'hello.vim',
" \ 'online-judge-tools.vim',
" \ ])
"
call dein#end()
call dein#save_state()
endif
"filetype plugin indent on
"syntax enable
" プラグインのインストール
if dein#check_install()
call dein#install()
endif
"}}}1
" カラースキーム {{{1
"colorscheme設定
if (has("termguicolors"))
set termguicolors
endif
let g:cpp_class_scope_highlight = 1
colorscheme onedark
highlight Normal ctermbg=none
highlight NonText ctermbg=none
highlight LineNr ctermbg=none
highlight Folded ctermbg=none
highlight EndOfBuffer ctermbg=none
highlight CursorLine guifg=none
let g:seiya_target_groups = has('nvim') ? ['guibg'] : ['ctermbg']
let g:seiya_auto_enable=0
"}}}1
" キーマッピング {{{1
" from Shougo's mapping
" [Space]: Other useful commands
" Smart space mapping.
nmap <Space> [Space]
" s: Windows and buffers(High priority)
nmap s [Window]
" The prefix key.
nmap t [Tag]
" ESC連打でハイライト解除
nnoremap <Esc><Esc> :nohlsearch<CR><Esc>
noremap j gj
noremap k gk
noremap <S-h> ^
noremap <S-j> }
noremap <S-k> {
noremap <S-l> $
noremap m %
nnoremap <CR> o<ESC>
nnoremap == gg=G''
nnoremap <Space>tv :vs<CR>:Deol<CR>
nnoremap <Space>ts :sp<CR>:Deol<CR>
nnoremap <Space>tf :Deol -split=floating -winwidth=110<CR>
nnoremap < <<
nnoremap > >>
noremap ; :
noremap : ;
set backspace=start,eol,indent
set wildmenu
inoremap jk <Esc>
tnoremap <C-[> <C-\><C-n>
" xで消した文字をレジスタに残さない
nnoremap x "_x
nnoremap X "_X
" visual + C-nで改行削除 つかってない
" vnoremap <C-n> :s/\n/ /g<CR>
" nnoremap <silent> <C-m> :PrevimOpen<CR>
"jq用の設定
command! -nargs=? Jq call s:Jq(<f-args>)
function! s:Jq(...)
if 0 == a:0
let l:arg = "."
else
let l:arg = a:1
endif
execute "%! jq \"" . l:arg . "\""
endfunction
"}}}1
" テンプレートファイル {{{1
"import template file
autocmd BufNewFile *.sh 0r ~/.config/nvim/template/sh.txt
autocmd BufNewFile *.cpp 0r ~/.config/nvim/template/cpp.txt
autocmd BufNewFile CMakeLists.txt 0r ~/.config/nvim/template/cmake.txt
"}}}1
" プラグインの設定類 そのうち移行したい {{{1
"使用中 {{{2
"texのための設定 {{{3
" disable the conceal function
let g:tex_conceal=''
"translate設定 {{{3
command! -nargs=+ Trans :vs | :term trans <args>
"複数行はできなかった!(改行が入ってしまう)
"普通に辞書として使いたいときはTe(英語→ 日本語)
nnoremap Te yw :Trans '<C-r>"'<CR>
vnoremap Te y :Trans '<C-r>"'<CR>
"日本語→ 英語はF3
nnoremap Tj yw :Trans :en '<C-r>"'<CR>
vnoremap Tj y :Trans :en '<C-r>"'<CR>
"F4でその行を変換(日本語→ 英語)
"let s:trans_cmd = 'trans'
"let s:trans_opt = ':en -b --no-ansi -e google'
"exec 'command! -nargs=0 -range TransLine <line1>,<line2>!' . s:trans_cmd . ' ' . s:trans_opt
"nnoremap <silent> <F4> :TransLine<CR>
"}}}3
"vimのtab機能をいい感じにする {{{3
" Anywhere SID.
function! s:SID_PREFIX()
return matchstr(expand('<sfile>'), '<SNR>\d\+_\zeSID_PREFIX$')
endfunction
" Set tabline.
function! s:my_tabline()
let s = ''
for i in range(1, tabpagenr('$'))
let bufnrs = tabpagebuflist(i)
let bufnr = bufnrs[tabpagewinnr(i) - 1] " first window, first appears
let no = i " display 0-origin tabpagenr.
let mod = getbufvar(bufnr, '&modified') ? '!' : ' '
let title = fnamemodify(bufname(bufnr), ':t')
let title = '[' . title . ']'
let s .= '%'.i.'T'
let s .= '%#' . (i == tabpagenr() ? 'TabLineSel' : 'TabLine') . '#'
let s .= no . ':' . title
let s .= mod
let s .= '%#TabLineFill# '
endfor
let s .= '%#TabLineFill#%T%=%#TabLine#'
return s
endfunction
let &tabline = '%!'. s:SID_PREFIX() . 'my_tabline()'
set showtabline=2 "常にタブラインを表示
" Tab jump
" t1で1番左のタブ、t2で1番左から2番目のタブにジャンプ
for n in range(1, 9)
execute 'nnoremap<silent> [Tag]'.n ':<C-u>tabnext'.n.'<CR>'
endfor
" tc 新しいタブを一番右に作る
nnoremap <silent> [Tag]c :tablast <bar> tabnew<CR>
" tx タブを閉じる
nnoremap <silent> [Tag]x :tabclose<CR>
" tn 次のタブ
nnoremap <silent> [Tag]n :tabnext<CR>
" tp 前のタブ
nnoremap <silent> [Tag]p :tabprevious<CR>
" }}}3
"}}}2
"}}}1
" この折りたたみはmarkerという機能を使用している za:折りたたみの開閉 zA:折りたたみの再帰的開閉
" vim: foldmethod=marker
" vim: foldcolumn=3
" vim: foldlevel=0