1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-04-14 23:49:19 +08:00

Merge remote-tracking branch 'lsrdg/dev' into dev

This commit is contained in:
wsdjeg 2017-02-19 22:24:06 +08:00
commit 9abea02c7c
7 changed files with 33 additions and 0 deletions

3
docs/Gemfile Normal file
View File

@ -0,0 +1,3 @@
source 'https://rubygems.org'
gem 'github-pages', group: :jekyll_plugins
gem 'jekyll-redirect-from', group: :jekyll_plugins

View File

@ -4,3 +4,5 @@ description: A community-driven Vim distribution
show_downloads: false
google_analytics: UA-89745542-1
project_repo_url: https://github.com/SpaceVim/SpaceVim
permalink: /:title/

View File

@ -95,6 +95,7 @@
<b><a href="https://spacevim.org/development">Development</a></b> |
<b><a href="https://spacevim.org/community">Community</a></b> |
<b><a href="https://spacevim.org/documentation">Documentation</a></b> |
<b><a href="https://spacevim.org/blog">Blog</a></b>
<b><a href="https://spacevim.org/sponsors">Sponsors</a></b>
</p>
<hr>

View File

@ -1,5 +1,7 @@
---
title: SpaceVim release v0.1.0
categories: changelog
excerpt: "Here you can check what has been done so far."
---
# [Changelogs](https://spacevim.org/development#changelog) > SpaceVim release v0.1.0

View File

@ -1,3 +1,10 @@
---
title: "Use Vim as a Java IDE"
categories: tutorials
excerpt: "I am a vimmer and a java developer. Here are some useful plugins for developing java in vim/neovim."
redirect_from: "/2017/02/11/use-vim-as-a-java-ide.html"
---
# [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.

18
docs/blog.md Normal file
View File

@ -0,0 +1,18 @@
---
title: "Blog"
---
# Blog
Here you can learn more about SpaceVim with our tutorials and find out what's
going on.
<ul>
{% for post in site.posts %}
<li>
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
<span class="post-date">{{ post.date | date_to_string }}</span>
<h4>{{ post.excerpt | truncatewords: 100 }}</h4>
</li>
{% endfor %}
</ul>

View File