mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-23 20:10:05 +08:00
Add blog and changelog categories
This commit is contained in:
parent
bae4c4aacc
commit
1176ed3e70
@ -1,3 +1,7 @@
|
|||||||
|
---
|
||||||
|
categories: blog
|
||||||
|
---
|
||||||
|
|
||||||
# [Blogs](https://spacevim.org/community#blogs) > Use Vim as a Java IDE
|
# [Blogs](https://spacevim.org/community#blogs) > Use Vim as a Java IDE
|
||||||
|
|
||||||
I am a vimmer and a java developer. Here are some useful plugins for developing java in vim/neovim.
|
I am a vimmer and a java developer. Here are some useful plugins for developing java in vim/neovim.
|
||||||
|
@ -23,9 +23,11 @@ To report an issue or give feedback to the developers, please use the [issue tra
|
|||||||
## Blogs
|
## Blogs
|
||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
{% for post in site.posts %}
|
{% for post in site.posts %}
|
||||||
<li>
|
{% if post.categories == "blog" %}
|
||||||
<a href="{{ post.url }}">{{ post.title }}</a>
|
<li>
|
||||||
</li>
|
<a href="{{ post.url }}">{{ post.title }}</a>
|
||||||
{% endfor %}
|
</li>
|
||||||
|
{% endif %}
|
||||||
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
|
@ -20,15 +20,27 @@ If you get any issues, please open an issue with the ISSUE_TEMPLATE. It is usefu
|
|||||||
|
|
||||||
```vim
|
```vim
|
||||||
function! SpaceVim#layers#foo#plugins() abort
|
function! SpaceVim#layers#foo#plugins() abort
|
||||||
let plugins = []
|
let plugins = []
|
||||||
call add(plugins, ['Shougo/foo.vim', {'option' : 'value'}])
|
call add(plugins, ['Shougo/foo.vim', {'option' : 'value'}])
|
||||||
return plugins
|
return plugins
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
|
|
||||||
function! SpaceVim#layers#foo#config() abort
|
function! SpaceVim#layers#foo#config() abort
|
||||||
" here you can set some value or mappings
|
" here you can set some value or mappings
|
||||||
endfunction
|
endfunction
|
||||||
```
|
```
|
||||||
|
|
||||||
4. send PR to SpaceVim.
|
4. send PR to SpaceVim.
|
||||||
|
|
||||||
|
## Changelog
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
{% for post in site.posts %}
|
||||||
|
{% if post.categories == "changelog" %}
|
||||||
|
<li>
|
||||||
|
<a href="{{ post.url }}">{{ post.title }}</a>
|
||||||
|
</li>
|
||||||
|
{% endif %}
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
|
Loading…
Reference in New Issue
Block a user