vimにEmmetを導入

Emmetのプラグインを管理するためにNeoBundleのインストールも行います。

$ mkdir -p ~/.vim/bundle
$ git clone git://github.com/Shougo/neobundle.vim ~/.vim/bundle/neobundle.vim

.vimrc:

if has('vim_starting')
    if &compatible
        set nocompatible
    endif
    set runtimepath+=~/.vim/bundle/neobundle.vim/
endif
call neobundle#begin(expand('~/.vim/bundle/'))
NeoBundleFetch 'Shougo/neobundle.vim'
NeoBundle 'mattn/emmet-vim'
call neobundle#end()
filetype plugin indent on
NeoBundleCheck
:NeoBundleInstall
:NeoBundleUpdate

参考