Skip to content

Instantly share code, notes, and snippets.

@koturn
Created July 2, 2016 08:00
Show Gist options
  • Select an option

  • Save koturn/f579f371fbb04bbe8cb4d3d1c0c69870 to your computer and use it in GitHub Desktop.

Select an option

Save koturn/f579f371fbb04bbe8cb4d3d1c0c69870 to your computer and use it in GitHub Desktop.
dein.vimの設定の雛型
" Template of configuration with dein.vim
if has('vim_starting')
let s:deindir = expand('~/.cache/dein')
let s:deinlocal = s:deindir . '/repos/github.com/Shougo/dein.vim'
let &runtimepath = s:deinlocal . ',' . &runtimepath
endif
if dein#load_state(s:deindir)
call dein#begin(s:deindir)
call dein#add('Shougo/dein.vim')
call dein#add('itchyny/lightline.vim')
call dein#end()
call dein#save_state()
endif
filetype plugin indent on
syntax enable
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment