2018-01-13 13:22:02 +08:00
|
|
|
|
---
|
|
|
|
|
title: "Quick start guide"
|
|
|
|
|
description: "SpaceVim is a community-driven vim distribution that seeks to provide layer feature."
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Quick start guide
|
|
|
|
|
|
2018-02-20 22:02:00 +08:00
|
|
|
|
If you haven’t seen SpaceVim at all yet, the first thing you should read is The Quick start guide.
|
|
|
|
|
It will give you a good idea of what SpaceVim is like,
|
|
|
|
|
show you how to install it, and explain its features.
|
|
|
|
|
|
|
|
|
|
Upon completing the book, you’ll be an intermediate Rust developer, and will have a good grasp of the fundamental ideas behind Rust.
|
|
|
|
|
|
2018-01-13 13:22:02 +08:00
|
|
|
|
<!-- vim-markdown-toc GFM -->
|
|
|
|
|
|
|
|
|
|
- [Install](#install)
|
|
|
|
|
- [Linux and macOS](#linux-and-macos)
|
|
|
|
|
- [Windows](#windows)
|
2018-02-20 22:02:00 +08:00
|
|
|
|
- [Learning SpaceVim](#learning-spacevim)
|
2018-01-13 13:22:02 +08:00
|
|
|
|
|
|
|
|
|
<!-- vim-markdown-toc -->
|
|
|
|
|
|
2018-02-20 22:02:00 +08:00
|
|
|
|
## Install
|
2018-01-13 13:22:02 +08:00
|
|
|
|
|
2018-02-20 22:02:00 +08:00
|
|
|
|
At a minimum, SpaceVim requires `git` and `curl` to be installed. These tools
|
2018-01-13 13:22:02 +08:00
|
|
|
|
are needed for downloading plugins and fonts.
|
|
|
|
|
|
2018-02-20 22:02:00 +08:00
|
|
|
|
If you are using vim/neovim in terminal, you also need to set the font of your terminal.
|
2018-01-13 13:22:02 +08:00
|
|
|
|
|
|
|
|
|
### Linux and macOS
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
curl -sLf https://spacevim.org/install.sh | bash
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
After SpaceVim is installed, launch `vim` and SpaceVim will **automatically** install plugins.
|
|
|
|
|
|
|
|
|
|
For more info about the install script, please check:
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
curl -sLf https://spacevim.org/install.sh | bash -s -- -h
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### Windows
|
|
|
|
|
|
2018-04-01 01:51:54 +08:00
|
|
|
|
The easiest way is to download [install.cmd](https://spacevim.org/install.cmd) and run it as administrator, or install SpaceVim manually.
|
2018-02-20 22:02:00 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## Learning SpaceVim
|
|
|
|
|
|
2018-03-18 20:31:12 +08:00
|
|
|
|
- [SpaceVim Documentation](../documentation). Also known as "The Book", The SpaceVim Documentation will introduce
|
2018-02-20 22:02:00 +08:00
|
|
|
|
you to the main topics important to using SpaceVim. The book is the primary official document of the language.
|
|
|
|
|
- [Hack-SpaceVim](https://github.com/Gabirel/Hack-SpaceVim). Tell you how to hack SpaceVim.
|