-
Notifications
You must be signed in to change notification settings - Fork 4
/
.vimrc
225 lines (166 loc) · 4.87 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
" setting
" Note: Skip initialization for vim-tiny or vim-small.
if 0 | endif
if &compatible
set nocompatible " Be iMproved
endif
" Required:
set runtimepath+=~/.vim/bundle/neobundle.vim/
set backspace=indent,eol,start
" Required:
call neobundle#begin(expand('~/.vim/bundle/'))
" Let NeoBundle manage NeoBundle
" Required:
NeoBundleFetch 'Shougo/neobundle.vim'
" My Bundles here:
" Color settings
" NeoBundle 'flazz/vim-colorschemes'
NeoBundle 'jacoborus/tender.vim'
NeoBundle 'freeo/vim-kalisi'
NeoBundle 'dracula/vim'
" Color scheme preview
" How to Use
" :Unite -auto-preview colorscheme
NeoBundle 'Shougo/unite.vim'
NeoBundle 'ujihisa/unite-colorscheme'
" Auto close parentheses
" NeoBundle 'cohama/lexima.vim'
NeoBundle 'Townk/vim-autoclose'
" C++ syntax highlighting
NeoBundle 'vim-jp/vim-cpp'
NeoBundle 'octol/vim-cpp-enhanced-highlight'
" Python auto-complete
NeoBundle 'davidhalter/jedi-vim'
" MarkDown preview
NeoBundle 'tyru/open-browser.vim'
NeoBundle 'kannokanno/previm'
" For easy comment out
" <leader>c<Space>
NeoBundle 'scrooloose/nerdcommenter'
" For ROS
" NeoBundle "taketwo/vim-ros"
" For Vue component
NeoBundle 'storyn26383/vim-vue'
" For rapid html editing
NeoBundle 'mattn/emmet-vim'
" Highlight whitespace on end of line
NeoBundle 'bronson/vim-trailing-whitespace'
" React
NeoBundle 'pangloss/vim-javascript'
NeoBundle 'mxw/vim-jsx'
" Refer to |:NeoBundle-examples|.
" Note: You don't set neobundle setting in .gvimrc!
call neobundle#end()
" Required:
filetype plugin indent on
" If there are uninstalled bundles found on startup,
" this will conveniently prompt you to install them.
NeoBundleCheck
"文字コードをUFT-8に設定
set fenc=utf-8
" バックアップファイルを作らない
set nobackup
" スワップファイルを作らない
set noswapfile
" 編集中のファイルが変更されたら自動で読み直す
set autoread
" バッファが編集中でもその他のファイルを開けるように
set hidden
" 入力中のコマンドをステータスに表示する
set showcmd
" 見た目系
" 行番号を表示
set number
" 行末の1文字先までカーソルを移動できるように
set virtualedit=onemore
" インデントはスマートインデント
set autoindent
" ビープ音を可視化
set visualbell
" 括弧入力時の対応する括弧を表示
set showmatch
" ステータスラインを常に表示
set laststatus=2
" コマンドラインの補完
set wildmode=list:longest
" 折り返し時に表示行単位での移動できるようにする
nnoremap j gj
nnoremap k gk
" 色設定
" If you have vim >=8.0 or Neovim >= 0.1.5
" if (has("termguicolors"))
" set termguicolors
" endif
" " For Neovim 0.1.3 and 0.1.4
" let $NVIM_TUI_ENABLE_TRUE_COLOR=1
"
" " Theme
syntax enable
colorscheme tender
" colorscheme kalisi
" set background=dark
" colorscheme elflord
" color dracula
" hi LineNr term=NONE cterm=NONE ctermfg=DarkGrey ctermbg=NONE gui=NONE guifg=DarkGrey guibg=NONE
" Tab系
" Tab文字を半角スペースにする
set expandtab
" 行頭以外のTab文字の表示幅(スペースいくつ分)
set tabstop=2
" 行頭でのTab文字の表示幅
set shiftwidth=2
" 検索系
" 検索文字列が小文字の場合は大文字小文字を区別なく検索する
set ignorecase
" 検索文字列に大文字が含まれている場合は区別して検索する
set smartcase
" 検索文字列入力時に順次対象文字列にヒットさせる
set incsearch
" 検索時に最後まで行ったら最初に戻る
set wrapscan
" 検索語をハイライト表示
set hlsearch
" ESC連打でハイライト解除
nmap <Esc><Esc> :nohlsearch<CR><Esc>
" ビープの動作を無効化
set visualbell t_vb=
set noerrorbells
" Previm
" Space-p で MarkDown のプレビュー
autocmd BufNewFile,BufRead *.{md,mdwn,mkd,mkdn,mark*} set filetype=markdown
let g:previm_open_cmd = ''
nnoremap [previm] <Nop>
nmap <C-p> [previm]
nnoremap <silent> [previm] :<C-u>PrevimOpen<CR>
" Config for NERD Commenter
let g:NERDSpaceDelims = 2
" Config for vim-cpp-enhanced-highlight plugin
let g:cpp_class_scope_highlight = 1
let g:cpp_member_variable_highlight = 0
let g:cpp_class_decl_highlight = 1
let g:cpp_experimental_simple_template_highlight = 1
let g:cpp_experimental_template_highlight = 1
let g:cpp_concepts_highlight = 1
let g:cpp_no_function_highlight = 1
autocmd BufRead,BufNewFile *.{launch,urdf,world,sdf} setfiletype html
let g:jsx_ext_required = 0
" NERDCommenter setting for .vue file
let g:ft = ''
function! NERDCommenter_before()
if &ft == 'vue'
let g:ft = 'vue'
let stack = synstack(line('.'), col('.'))
if len(stack) > 0
let syn = synIDattr((stack)[0], 'name')
if len(syn) > 0
exe 'setf ' . substitute(tolower(syn), '^vue_', '', '')
endif
endif
endif
endfunction
function! NERDCommenter_after()
if g:ft == 'vue'
setf vue
let g:ft = ''
endif
endfunction