Skip to content

Instantly share code, notes, and snippets.

@nekolinuxblog
Last active October 24, 2017 07:22
Show Gist options
  • Save nekolinuxblog/95bc00fe4d1e26a239a1d361b138df16 to your computer and use it in GitHub Desktop.
Save nekolinuxblog/95bc00fe4d1e26a239a1d361b138df16 to your computer and use it in GitHub Desktop.
if &compatible
set nocompatible
endif
"dein.vimディレクトリをruntimepathに追加する
set runtimepath+=~/vimfiles/bundles/repos/github.com/Shougo/dein.vim
"以下定型文
if dein#load_state("~/vimfiles/bundles")
call dein#begin("~/vimfiles/bundles")
call dein#add("~/vimfiles/bundles/repos/github.com/Shougo/dein.vim")
"好きなプラグインを dein#add() 追加していく
"call dein#add('好きなプラグイン')
call dein#add('vim-airline/vim-airline')
call dein#end()
call dein#save_state()
endif
filetype plugin indent on
syntax enable
if dein#check_install()
call dein#install()
endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment