mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-03-24 10:47:07 +08:00
46 lines
1.0 KiB
Markdown
46 lines
1.0 KiB
Markdown
|
---
|
||
|
title: "入门指南"
|
||
|
description: "SpaceVim 入门教程,包括安装初始化配置等内容"
|
||
|
lang: cn
|
||
|
---
|
||
|
|
||
|
|
||
|
# SpaceVim 快速入门
|
||
|
|
||
|
<!-- vim-markdown-toc GFM -->
|
||
|
|
||
|
- [依赖](#依赖)
|
||
|
- [安装](#安装)
|
||
|
- [Linux 或 macOS](#linux-或-macos)
|
||
|
- [Windows](#windows)
|
||
|
|
||
|
<!-- vim-markdown-toc -->
|
||
|
|
||
|
## 依赖
|
||
|
|
||
|
At a minimum, SpaceVim requires `git` and `wget` to be installed. These tools
|
||
|
are needed for downloading plugins and fonts.
|
||
|
|
||
|
If you are new to vim, you should learning about Vim in general, read
|
||
|
[vim-galore](https://github.com/mhinz/vim-galore).
|
||
|
|
||
|
## 安装
|
||
|
|
||
|
### Linux 或 macOS
|
||
|
|
||
|
```bash
|
||
|
curl -sLf https://spacevim.org/cn/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/cn/install.sh | bash -s -- -h
|
||
|
```
|
||
|
|
||
|
### Windows
|
||
|
|
||
|
The easist way is to download [install.cmd](https://spacevim.org/install.cmd) and run it as administrator, or install SpaceVim manually.
|