-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.vimrc
169 lines (145 loc) · 5.78 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
scriptencoding utf-8
" General Settings
set number
set relativenumber
set cursorline
set ruler
set wildmenu
set showmode
set encoding=utf-8
set fileencoding=utf-8
set fileencodings=utf-8,iso-2022-jp,euc-jp,sjis
set termencoding=utf-8
set fileformats=unix,dos,mac
set tabstop=4 " display width of TAB(^I)
set shiftwidth=4 " number of spaces for smart indent
set whichwrap=b,s,[,],<,>
" set whichwrap=b,s,h,l,<,>,[,],~ " カーソルの左右移動で行末から次の行の行頭への移動が可能になる
set backspace=indent,eol,start
set mouse=a
set laststatus=2
set showmatch
set history=10000
set hlsearch
set ignorecase
set shortmess-=S
set smartcase
set wrapscan
set virtualedit=onemore
" Character Settings
" set ambiwidth=double " □や○文字が崩れる問題を解決
" Tab/Indent Settings
" set list listchars=tab:\▸\- " 不可視文字を可視化(タブが「▸-」と表示される)
" set softtabstop=4 " 連続した空白に対してタブキーやバックスペースキーでカーソルが動く幅
" set autoindent " 改行時に前の行のインデントを継続する
" set smartindent " 改行時に前の行の構文をチェックし次の行のインデントを増減する
autocmd FileType c setlocal tabstop=2 shiftwidth=2 expandtab
autocmd FileType cpp setlocal tabstop=2 shiftwidth=2 expandtab
autocmd FileType python setlocal tabstop=4 shiftwidth=4 expandtab
autocmd FileType dockerfile setlocal tabstop=4 shiftwidth=4 expandtab
autocmd FileType yaml setlocal tabstop=4 shiftwidth=4 expandtab
autocmd FileType json setlocal tabstop=2 shiftwidth=2 expandtab
autocmd FileType markdown setlocal tabstop=4 shiftwidth=4 expandtab wrap
autocmd FileType html setlocal tabstop=2 shiftwidth=2 expandtab
autocmd FileType css setlocal tabstop=2 shiftwidth=2 expandtab
autocmd FileType javascript setlocal tabstop=2 shiftwidth=2 expandtab
autocmd FileType typescript setlocal tabstop=2 shiftwidth=2 expandtab
" Uncomment and configure as needed
" set termguicolors
" set background=dark
" set wildmode=list:longest
" set nobackup " do not make backup file
" set noswapfile " スワップファイルを作らない
" set autoread " 編集中のファイルが変更されたら自動で読み直す
" set hidden " バッファが編集中でもその他のファイルを開けるように
" set showcmd " 入力中のコマンドをステータスに表示する: 打ったコマンドをステータスラインの下に表示
" set visualbell " ビープ音を可視化
" Enable movement by display lines when wrapping
" normal mode
nnoremap j gj
nnoremap k gk
nnoremap <down> gj
nnoremap <up> gk
" visual mode
xnoremap j gj
xnoremap k gk
xnoremap <down> gj
xnoremap <up> gk
" insert mode
onoremap j gj
onoremap k gk
onoremap <down> gj
onoremap <up> gk
" insert mode (Emacs-Keybind)
imap <C-p> <Up>
imap <C-n> <Down>
imap <C-b> <Left>
imap <C-f> <Right>
imap <C-a> <C-o>:call <SID>home()<CR>
imap <C-d> <Del>
imap <C-h> <BS>
inoremap <C-k> <C-o>:call setline(line('.'), col('.') == 1 ? '' : getline('.')[:col('.') - 2])<CR>
" Disable Copilot default mapping
let g:copilot_no_tab_map = v:true
" Use Ctrl+e for Copilot and Emacs keybind
imap <silent><script><expr> <C-e> copilot#Accept("\<End>")
nnoremap <leader>w :w<CR>
function! s:home()
let start_column = col('.')
normal! ^
if col('.') == start_column
normal! 0
endif
return ''
endfunction
if has('vim_starting')
set nocompatible
" NeoBundle
set runtimepath+=~/.vim/bundle/neobundle.vim/
" set runtimepath+=~/src/vim-polyglot
endif
" initialize NeoBundle
call neobundle#begin(expand('~/.vim/bundle/'))
NeoBundleFetch 'Shougo/neobundle.vim'
NeoBundle 'gabrielelana/vim-markdown' " markdown対応してindent/unindentをenable
NeoBundle 'Townk/vim-autoclose' " (を自動的に閉じる
NeoBundle 'github/copilot.vim'
" NeoBundle 'scrooloose/syntastic' " 構文エラーチェック
" NeoBundle 'ctrlpvim/ctrlp.vim' " 多機能セレクタ
" NeoBundle 'tacahiroy/ctrlp-funky' " CtrlPの拡張プラグイン. 関数検索
" NeoBundle 'suy/vim-ctrlp-commandline' " CtrlPの拡張プラグイン. コマンド履歴検索
" NeoBundle 'rking/ag.vim' " CtrlPの検索にagを使う
" NeoBundle 'pmsorhaindo/syntastic-local-eslint.vim' " プロジェクトに入ってるESLintを読み込む
call neobundle#end()
let g:markdown_enable_spell_checking = 0 "disable spell-checking of vim-markdown"
filetype plugin indent on
NeoBundleCheck " check if there are any plugins that are not installed, and ask to install them
"----------------------------------------------------------
" CtrlP
"----------------------------------------------------------
let g:ctrlp_match_window = 'order:ttb,min:20,max:20,results:100' " マッチウインドウの設定. 「下部に表示, 大きさ20行で固定, 検索結果100件」
let g:ctrlp_show_hidden = 1 " .(ドット)から始まるファイルも検索対象にする
let g:ctrlp_types = ['fil'] "ファイル検索のみ使用
let g:ctrlp_extensions = ['funky', 'commandline'] " CtrlPの拡張として「funky」と「commandline」を使用
" CtrlPCommandLineの有効化
command! CtrlPCommandLine call ctrlp#init(ctrlp#commandline#id())
" CtrlPFunkyの絞り込み検索設定
let g:ctrlp_funky_matchtype = 'path'
if executable('ag')
let g:ctrlp_use_caching=0 " CtrlPのキャッシュを使わない
let g:ctrlp_user_command='ag %s -i --hidden -g ""' " 「ag」の検索設定
endif
" Highlight Full-width Space
function! FullSpace()
highlight FullSpace cterm=underline ctermfg=magenta guibg=darkgray
endfunction
if has('syntax')
augroup FullSpace
autocmd!
autocmd ColorScheme * call FullSpace()
autocmd VimEnter,WinEnter,BufRead * let w:m1=matchadd('FullSpace', ' ')
augroup END
call FullSpace()
endif
colorscheme default
syntax enable