Skip to content

Instantly share code, notes, and snippets.

@blockworks
Last active March 7, 2016 11:15
Show Gist options
  • Save blockworks/c317e6a4a633facb9d6f to your computer and use it in GitHub Desktop.
Save blockworks/c317e6a4a633facb9d6f to your computer and use it in GitHub Desktop.
vim ~/.vimrc
" シンタックス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