Neovim
terminal
$ brew install neovim/neovim/neovim
$ mkdir -p ~/.config/nvim/init.vim/
$ touch ~/.config/nvim/init.vim/init.vim
dein
terminal
$ mkdir -p ~/.vim/dein/repos/github.com/Shougo/dein.vim
$ git clone https://github.com/Shougo/dein.vim.git
~/.vim/dein/repos/github.com/Shougo/dein.vim
- [dein\.vimを使ってみる \- Qiita](http://qiita.com/yoza/items/2f8bd33a18225754f346)
```vim:~/.config/nvim/init.vim
let s:dein_path = expand('~/.vim/dein')
if &compatible
set nocompatible
endif
set runtimepath+=~/.vim/dein/repos/github.com/Shougo/dein.vim
if dein#load_state(s:dein_path)
call dein#begin(s:dein_path)
call dein#add('Shougo/dein.vim')
call dein#end()
call dein#save_state()
endif
if dein#check_install()
call dein#install()
endif
filetype plugin indent on
syntax enable
vim-colors-solarized
~/.config/nvim/init.vim
call dein#add('altercation/vim-colors-solarized')
let g:solarized_termcolors=256
syntax enable
set background=dark
colorscheme solarized
- [neovim導入したりvimrcを作った - ぱいぱいにっき](http://mackee.hatenablog.com/entry/2016/04/02/225549)
## deoplete
```bash:terminal
$ brew install python3
$ pip3 install neovim
~/.config/nvim/init.vim
call dein#add('Shougo/deoplete.nvim')
let g:deoplete#enable_at_startup = 1
- [neovim導入したりvimrcを作った - ぱいぱいにっき](http://mackee.hatenablog.com/entry/2016/04/02/225549)
# vimrc
> ```vim:~/.config/nvim/init.vim
set clipboard=unnamed
dotfiles
TODO
- toml化
- dein.vimにお引越し - 藻ログ