-
Notifications
You must be signed in to change notification settings - Fork 0
/
vimrc
221 lines (195 loc) · 4.49 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
"
" Encode
"
set encoding=UTF-8
set fileencodings=utf-8,iso-2022-jp,euc-jp,sjis
set fileformats=unix,dos,mac
"
" Syntax
"
syntax enable
"
" True Color
"
set termguicolors
"
" Plugin
"
let s:dein_dir = expand('~/.cache/dein')
let s:dein_repo_dir = s:dein_dir . '/repos/github.com/Shougo/dein.vim'
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^=' . s:dein_repo_dir
endif
if dein#load_state(s:dein_dir)
call dein#begin(s:dein_dir)
let s:toml_dir = $HOME . '/workspace/dotfiles/vim/dein'
let s:toml = s:toml_dir . '/dein.toml'
let s:toml_lazy = s:toml_dir . '/dein_lazy.toml'
call dein#load_toml(s:toml, {'lazy': 0})
call dein#load_toml(s:toml_lazy, {'lazy': 1})
call dein#end()
call dein#save_state()
endif
if dein#check_install()
call dein#install()
endif
let s:removed_plugins = dein#check_clean()
if len(s:removed_plugins) > 0
call map(s:removed_plugins, "delete(v:val, 'rf')")
call dein#recache_runtimepath()
endif
"
" Color
"
colorscheme gruvbox
highlight SignColumn ctermbg=none
highlight CursorLine cterm=none ctermbg=234
highlight CursorLineNr cterm=none ctermbg=234
"
" Curosr
"
set cursorline
set ignorecase
"
" LineNumber
"
set number
"
" Search
"
set ignorecase
set hlsearch
set incsearch
" 大文字入力した場合はignorecaseを無効化
set smartcase
" 最後尾まで検索したら先頭に戻る
set wrapscan
"
" Undo
"
set undolevels=1000
if has('persistent_undo')
let undo_path = expand('~/.vim/undo')
exe 'set undodir=' . undo_path
set undofile
endif
"
" Tab, Indent
"
" tab入力をspaceに置き換える
set expandtab
" tabとみなすspace数
set tabstop=4
" tab入力で挿入するspace数
set softtabstop=4
" 自動indentのspace数
set shiftwidth=4
" C構文解析に基づくindent
set smartindent
" 1行前に基づくindent
set autoindent
let g:indentLine_fileTypeExclude = ['help', 'NvimTree', 'tabbar', 'unite']
" filetypeごとの設定
filetype plugin indent on
" sw=shiftwidth, sts=softtabstop, ts=tabstop, et=expandtab
autocmd FileType c setlocal sw=4 sts=4 ts=4 et
autocmd FileType cpp setlocal sw=4 sts=4 ts=4 et
autocmd FileType go setlocal sw=8 sts=8 ts=8 noet
autocmd FileType java setlocal sw=4 sts=4 ts=4 et
autocmd FileType javascript setlocal sw=2 sts=2 ts=2 et
autocmd FileType lua setlocal sw=2 sts=2 ts=2 et
autocmd FileType ruby setlocal sw=2 sts=2 ts=2 et
autocmd FileType rust setlocal sw=4 sts=4 ts=4 et
autocmd FileType scala setlocal sw=2 sts=2 ts=2 et
autocmd FileType sh setlocal sw=2 sts=2 ts=2 et
autocmd FileType toml setlocal sw=2 sts=2 ts=2 et
autocmd FileType json let g:indentLine_setConceal = 0
autocmd StdinReadPre * let s:std_in=1
"
" Clipboard
"
if has("mac")
set clipboard+=unnamed
else
set clipboard^=unnamedplus
endif
"
" TabPage
"
" tabを常に表示
set showtabline=2
"
" StatusLine
"
" stausを常に表示
set laststatus=2
set statusline=%f%m%=%l,%c\ %{'['.(&fenc!=''?&fenc:&enc).']\ ['.&fileformat.']'}
"
" CursorColumnSelect
"
set virtualedit=block
"
" CommandLine
"
set wildmenu
set wildmode=list:longest,full
"
" Terminal
"
" window移動
tnoremap <silent> <C-w>p <C-w>:tabprevious<CR>
tnoremap <silent> <C-w>n <C-w>:tabnext<CR>
"
" Keymap
"
nnoremap + <C-a>
nnoremap - <C-x>
nnoremap <C-s> :w<CR>
nnoremap <Esc><Esc> :nohlsearch<CR><Esc>
nnoremap Y y$
nnoremap j gj
nnoremap k gk
nnoremap <Leader>bb :buffers<CR>:b<Space>
nnoremap <Left> :bp<CR>
nnoremap <Right> :bn<CR>
inoremap ;<CR> <End>;<CR>
inoremap ,<CR> <End>,<CR>
"
" Etc
"
" 外部の変更を自動読込
set autoread
" backspaceの影響範囲
set backspace=indent,eol,start
" 未保存ファイルがある場合に終了前に保存確認
set confirm
" 未保存ファイルがある場合でも別ファイルを開く
set hidden
" 不可視文字の表示
set list
set listchars=tab:»-,trail:-,extends:»,precedes:«,nbsp:%
" マウス操作有効化
set mouse=a
" ファイル保存時にbackupファイルを作成しない
set nobackup
" swapファイルを作成しない
set noswapfile
" swapファイルを作成するまでの秒数
set updatetime=500
" カーソル位置
set ruler
" スクロール時の確保行
set scrolloff=10
" 入力コマンド表示
set showcmd
" 対応する括弧表示
set showmatch
" bepp音無効化
set visualbell t_vb=
" 新しいウィンドウを下に開く
set splitbelow
" 新しいウィンドウを右に開く
set splitright