mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-09 09:20:06 +08:00
Hot fix
This commit is contained in:
parent
91b0636b47
commit
4c3ca1d6be
@ -3,20 +3,18 @@ title: "Quick start guide"
|
|||||||
description: "SpaceVim is a community-driven vim distribution that seeks to provide layer feature."
|
description: "SpaceVim is a community-driven vim distribution that seeks to provide layer feature."
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
# Quick start guide
|
# Quick start guide
|
||||||
|
|
||||||
If you haven’t seen SpaceVim at all yet, the first thing you should read is The Quick start guide.
|
If you haven’t seen SpaceVim at all yet, the first thing you should read is this guide.
|
||||||
It will give you a good idea of what SpaceVim is like,
|
It will give you a good idea of what SpaceVim is like,
|
||||||
show you how to install it, and explain its features.
|
show you how to install it, how to config 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.
|
|
||||||
|
|
||||||
<!-- vim-markdown-toc GFM -->
|
<!-- vim-markdown-toc GFM -->
|
||||||
|
|
||||||
- [Install](#install)
|
- [Install](#install)
|
||||||
- [Linux and macOS](#linux-and-macos)
|
- [Linux and macOS](#linux-and-macos)
|
||||||
- [Windows](#windows)
|
- [Windows](#windows)
|
||||||
|
- [Configuration](#configuration)
|
||||||
- [Learning SpaceVim](#learning-spacevim)
|
- [Learning SpaceVim](#learning-spacevim)
|
||||||
|
|
||||||
<!-- vim-markdown-toc -->
|
<!-- vim-markdown-toc -->
|
||||||
@ -46,9 +44,45 @@ curl -sLf https://spacevim.org/install.sh | bash -s -- -h
|
|||||||
|
|
||||||
The easiest way is to download [install.cmd](https://spacevim.org/install.cmd) and run it as administrator, or install SpaceVim manually.
|
The easiest way is to download [install.cmd](https://spacevim.org/install.cmd) and run it as administrator, or install SpaceVim manually.
|
||||||
|
|
||||||
|
## Configuration
|
||||||
|
|
||||||
|
The default configuration file of SpaceVim is `~/.SpaceVim.d/init.toml`, here is an example:
|
||||||
|
|
||||||
|
```toml
|
||||||
|
# This is basic configuration example for SpaceVim
|
||||||
|
|
||||||
|
# All SpaceVim option below [option] section
|
||||||
|
[options]
|
||||||
|
# set spacevim theme. by default colorscheme layer is not loaded,
|
||||||
|
# if you want to use more colorscheme, please load the colorscheme
|
||||||
|
# layer
|
||||||
|
colorscheme = "gruvbox"
|
||||||
|
background = "dark"
|
||||||
|
# Disable guicolors in basic mode, many terminal do not support 24bit
|
||||||
|
# true colors
|
||||||
|
guicolors = true
|
||||||
|
# Disable statusline separator, if you want to use other value, please
|
||||||
|
# install nerd fonts
|
||||||
|
statusline_separator = "nil"
|
||||||
|
statusline_separator = "bar"
|
||||||
|
buffer_index_type = 4
|
||||||
|
filetype_icon = false
|
||||||
|
statusline_display_mode = false
|
||||||
|
|
||||||
|
# Enable autocomplete layer
|
||||||
|
[[layers]]
|
||||||
|
name = 'autocomplete'
|
||||||
|
auto-completion-return-key-behavior = "complete"
|
||||||
|
auto-completion-tab-key-behavior = "cycle"
|
||||||
|
|
||||||
|
[[layers]]
|
||||||
|
name = 'shell'
|
||||||
|
default_position = 'top'
|
||||||
|
default_height = 30
|
||||||
|
```
|
||||||
|
|
||||||
## Learning SpaceVim
|
## Learning SpaceVim
|
||||||
|
|
||||||
- [SpaceVim Documentation](../documentation). Also known as "The Book", The SpaceVim Documentation will introduce
|
- [SpaceVim Documentation](../documentation). Also known as "The Book", The SpaceVim Documentation will introduce
|
||||||
you to the main topics important to using SpaceVim. The book is the primary official document of the language.
|
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.
|
- [Hack-SpaceVim](https://github.com/Gabirel/Hack-SpaceVim). Tell you how to hack SpaceVim.
|
||||||
|
Loading…
Reference in New Issue
Block a user