Created
July 2, 2016 08:00
-
-
Save koturn/f579f371fbb04bbe8cb4d3d1c0c69870 to your computer and use it in GitHub Desktop.
dein.vimの設定の雛型
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " 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