Last active
March 7, 2016 11:15
-
-
Save blockworks/c317e6a4a633facb9d6f to your computer and use it in GitHub Desktop.
vim ~/.vimrc
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
" シンタックスON | |
syntax on | |
" カーソル行にライン | |
set cursorline | |
" 対応括弧に<>を追加 | |
set matchpairs& matchpairs+=<:> | |
" 対応括弧をハイライト表示する | |
set showmatch | |
" ウィンドウの幅より長い行は折り返され、次の行に続けて表示される | |
set wrap | |
" 検索結果をハイライト表示 | |
:set hlsearch | |
" Emmetをインストール | |
NeoBundle 'mattn/emmet-vim' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment