mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 00:10:07 +08:00
1.0 KiB
1.0 KiB
title |
---|
Development |
Support SpaceVim
Development happens in the GitHub repository.
Report bugs
If you get any issues, please open an issue with the ISSUE_TEMPLATE. It is useful for me to debug for this issue.
Contribute Layers
- fork SpaceVim repo
- add a layer file
autoload/SpaceVim/layers/foo.vim
forfoo
layer. - edit layer file, check out the example below:
function! SpaceVim#layers#foo#plugins() abort
let plugins = []
call add(plugins, ['Shougo/foo.vim', {'option' : 'value'}])
return plugins
endfunction
function! SpaceVim#layers#foo#config() abort
" here you can set some value or mappings
endfunction
- send PR to SpaceVim.
Changelog
-
{% for post in site.posts %}
{% if post.categories == "changelog" %}
- {{ post.title }} {% endif %} {% endfor %}