Skip to content

Instantly share code, notes, and snippets.

@pasela
Created March 11, 2016 08:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pasela/d2eb54172d5970d177a0 to your computer and use it in GitHub Desktop.
Save pasela/d2eb54172d5970d177a0 to your computer and use it in GitHub Desktop.
.vimrc-dein
set nocompatible
let s:dein_root = expand('~/.vim/dein')
let s:dein_path = expand(s:dein_root . '/repos/github.com/Shougo/dein.vim')
execute 'set runtimepath^=' . s:dein_path
call dein#begin(s:dein_root)
call dein#add('Shougo/dein.vim')
call dein#add('Shougo/vimproc.vim', {
\ 'build': 'make'
\ })
call dein#add('Shougo/unite.vim')
call dein#add('Shougo/vimfiler.vim')
call dein#end()
filetype plugin indent on
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment