-
Notifications
You must be signed in to change notification settings - Fork 0
/
.vimrc
197 lines (168 loc) · 6.4 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
" setting
"文字コードをUFT-8に設定
set fenc=utf-8
" バックアップファイルを作らない
set nobackup
" スワップファイルを作らない
set noswapfile
" 編集中のファイルが変更されたら自動で読み直す
set autoread
" バッファが編集中でもその他のファイルを開けるように
set hidden
" 入力中のコマンドをステータスに表示する
set showcmd
" 見た目系
"カラースキーム変更
syntax on
colorscheme molokai
set t_Co=256
" 行番号を表示
set number
" シンタックスハイライトの有効化
syntax enable
" ハイライト無効になる読み込み時間(ms)の設定(デフォルトは2000)
set redrawtime=10000
" 現在の行を強調表示
set cursorline
"highlight CursorLine ctermbg=darkgray guibg=darkgray
" 現在の行を強調表示(縦)
set cursorcolumn
"highlight CursorColumn ctermbg=darkgray guibg=darkgray
" 行末の1文字先までカーソルを移動できるように
set virtualedit=onemore
" インデントはスマートインデント
set smartindent
" ビープ音を可視化
set visualbell
" 括弧入力時の対応する括弧を表示
set showmatch
" ステータスラインを常に表示
set laststatus=2
" コマンドラインの補完
set wildmode=list:longest
" " 折り返し時に表示行単位での移動できるようにする
" nnoremap j gj
" nnoremap k gk
" Tab系
" 不可視文字を可視化(タブが「▸-」と表示される)
set list listchars=tab:\▸\-
" 行頭以外のTab文字の表示幅(スペースいくつ分)
set tabstop=4
" 行頭でのTab文字の表示幅
set shiftwidth=4
" 検索系
" 検索文字列が小文字の場合は大文字小文字を区別なく検索する
set ignorecase
" 検索文字列に大文字が含まれている場合は区別して検索する
set smartcase
" 検索文字列入力時に順次対象文字列にヒットさせる
set incsearch
" 検索時に最後まで行ったら最初に戻る
set wrapscan
" 検索語をハイライト表示
set hlsearch
" ESC連打でハイライト解除
nmap <Esc><Esc> :nohlsearch<CR><Esc>
" Lispファイル
autocmd FileType lisp setlocal expandtab
" Markdownファイル
autocmd FileType markdown setlocal expandtab
" HTMLファイル
autocmd FileType html setlocal expandtab
" CSSファイル
autocmd FileType css setlocal noexpandtab
" キャッシュファイルの保存ディレクトリ
set directory=~/.vim/tmp
set backupdir=~/.vim/tmp
set undodir=~/.vim/tmp
" ファイラー
" netrwは常にtree view
let g:netrw_liststyle = 3
" netrwで行番号を表示
let g:netrw_bufsettings = 'noma nomod nu nobl nowrap ro'
" 以下のエラーに対処するために設定
" - E363: pattern uses more memory than 'maxmempattern'
set mmp=5000
" BSで削除できるものを指定
" indent : 行頭の空白
" eol : 改行
" start : 挿入モード開始位置より手前の文字
set backspace=indent,eol,start
" Foldingの状態を保持する
autocmd BufWritePost * if expand('%') != '' && &buftype !~ 'nofile' | mkview | endif
autocmd BufRead * if expand('%') != '' && &buftype !~ 'nofile' | silent loadview | endif
set viewoptions-=options
" カスタムコマンド定義
" 指定行番号(複数行の場合は 1,3 の形式で指定)の行をMarkdownのURL修飾にする
command! -nargs=1 Murl :<args>s/.*/\<&\>/
" ファイルの内容をクリップボードにコピー
command! -nargs=0 CCp :call s:CopyFileToClipboard()
function! s:CopyFileToClipboard()
" pbcopyコマンドが利用可能かどうかをチェック
let l:pbcopy_available = executable('pbcopy')
" wl-copyコマンドが利用可能かどうかをチェック
let l:wlcopy_available = executable('wl-copy')
" clip.exeコマンドが利用可能かどうかをチェック
let l:clipexe_available = executable('clip.exe')
" 実行するコマンドを選択
if l:pbcopy_available
let l:command = 'cat "%" | pbcopy'
elseif l:wlcopy_available
let l:command = 'cat "%" | wl-copy'
elseif l:clipexe_available
let l:command = 'cat "%" | iconv -t utf16 | clip.exe'
else
let l:command = 'echo "[ERROR] This command requires either the ''pbcopy'', ''wl-copy'', or ''clip.exe'' command to be available."'
endif
" コマンドを実行
execute '!'.l:command
endfunction
" 指定行番号(複数行の場合は 1,3 の形式で指定)の内容をクリップボードにコピー
command! -nargs=+ SCp :call SedCopy(<f-args>)
function! SedCopy(arg)
" pbcopyコマンドが利用可能かどうかをチェック
let l:pbcopy_available = executable('pbcopy')
" wl-copyコマンドが利用可能かどうかをチェック
let l:wlcopy_available = executable('wl-copy')
" clip.exeコマンドが利用可能かどうかをチェック
let l:clipexe_available = executable('clip.exe')
" 実行するコマンドを選択
if l:pbcopy_available
let l:command = "sed -n '" . a:arg . "p' '%' | pbcopy"
elseif l:wlcopy_available
let l:command = "sed -n '" . a:arg . "p' '%' | wl-copy"
elseif l:clipexe_available
let l:command = "sed -n '" . a:arg . "p' '%' | iconv -t utf16 | clip.exe"
else
let l:command = 'echo "[ERROR] This command requires either the ''pbcopy'', ''wl-copy'', or ''clip.exe'' command to be available."'
endif
" コマンドを実行
execute '!'.l:command
endfunction
" 指定行番号(複数行の場合は 1,3 の形式で指定)の内容を標準出力する
command! -nargs=+ Sp :call SedPrint(<f-args>)
function! SedPrint(arg)
let command = "!sed -n '" . a:arg . "p' %"
execute command
endfunction
" ファイルのフルパスをクリップボードにコピー
command! -nargs=0 FFp :call FullFilePath()
function! FullFilePath()
let filePath = expand('%:p')
" pbcopyコマンドが利用可能かどうかをチェック
let l:pbcopy_available = executable('pbcopy')
" wl-copyコマンドが利用可能かどうかをチェック
let l:wlcopy_available = executable('wl-copy')
" 実行するコマンドを選択
if l:pbcopy_available
let l:command = 'echo ' . shellescape(filePath) . ' | pbcopy'
elseif l:wlcopy_available
let l:command = 'echo ' . shellescape(filePath) . ' | wl-copy'
else
let l:command = 'echo "[ERROR] This command requires either the ''pbcopy'' or ''wl-copy'' command to be available."'
endif
" コマンドを実行
execute '!'.l:command
endfunction
" Copilot
let g:copilot_filetypes = {'*': v:true, 'markdown': v:true}