Created
August 28, 2019 14:02
-
-
Save buyoh/697abf264d66d729b9043ebc991ddc19 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" show linenumber | |
set number | |
" vim の矩形選択で文字が無くても右へ進める | |
set virtualedit=block | |
" 挿入モードでバックスペースで削除できるようにする | |
set backspace=indent,eol,start | |
" 検索結果をハイライト表示 | |
set hlsearch | |
" インデント幅 | |
set shiftwidth=2 | |
" タブの代わりにスペースを入れる | |
set expandtab | |
set tabstop=2 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment