liuchengxu / space-vim

:four_leaf_clover: Lean & mean spacemacs-ish Vim distribution
https://liuchengxu.github.io/space-vim/
MIT License
2.85k stars 255 forks source link

How can I install my own plugin, I am beiginner,Please Help! #167

Closed UOvOU closed 7 years ago

UOvOU commented 7 years ago

Environment

Problem Description

I have no idea to install plugin,the example of package.vim is to complex...

liuchengxu commented 7 years ago

Put your own plugins in UserInit() of .spacevim in your home directory, e.g., add oni:

function UserInit()
     Plug 'extr0py/oni'
endfunction

Then reload vimrc (:source $MYVIMRC or SPC f R) and run :PlugInstall to install.

UOvOU commented 7 years ago

Thanks,I got it.