1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 03:10:06 +08:00

Update Chinese doc (#1348)

This commit is contained in:
Wang Shidong 2018-01-31 14:59:29 +08:00 committed by GitHub
parent b9eb854a4d
commit dcb08b7d88
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 25 additions and 5 deletions

View File

@ -3,6 +3,8 @@ title: "About"
description: "SpaceVim is a communicate driven vim distribution that supports vim and neovim"
---
# About
## Version
[SpaceVim](https://github.com/SpaceVim/SpaceVim) is a community-driven vim distribution that supports vim and Neovim. SpaceVim manages collections of plugins in layers. Layers make it easy for you, the user, to enable a new language or feature by grouping all the related plugins together. It got inspired by spacemacs.

View File

@ -4,6 +4,8 @@ description: "SpaceVim 是一个社区驱动的模块化 vim 配置,以模块
lang: cn
---
# 关于我们
## 版本
[SpaceVim](https://github.com/SpaceVim/SpaceVim) 是一个社区驱动的 vim 配置,支持 vim 和 neovim。SpaceVim
@ -17,7 +19,8 @@ lang: cn
## 标准
- Do not regress from origin
- 兼容 Vim 和 Neovim尽量确保 Vim下和 Neovim 下有相同的用户体验
- 兼容 Vim 7.4 或者无 +py/+py3/+lua等特性的Vim
- 不要从 origin 回归.
- 通过权衡成本和收益来决定结果.
- 收益与传统相比较,当收益是压倒性的时候,我们选择收益,而非坚持传统.
@ -25,7 +28,7 @@ lang: cn
## 鸣谢
- 维护者: [Wang Shidong](https://github.com/wsdjeg)
- 开发者: [Wang Shidong](https://github.com/wsdjeg)
- [![贡献者](https://img.shields.io/github/contributors/SpaceVim/SpaceVim.svg)](https://github.com/SpaceVim/SpaceVim/graphs/contributors)
- [vimdoc](https://github.com/google/vimdoc) 自动生成 vim 文档
- [Rafael Bodill](https://github.com/rafi) 的 vim 配置

View File

@ -1,11 +1,26 @@
### Where should I put my configration?
---
title: "FAQ"
description: "A list of latest blog about the feature of SpaceVim and tutorials of using vim."
---
SpaceVim load custom configuration from `~/.SpaceVim.d/init.vim`.
# SpaceVim FAQ
1. E492: Not an editor command: ^M
this is a list of most asked questions about SpaceVim.
## Where should I put my configration?
SpaceVim load custom global configuration from `~/.SpaceVim.d/init.vim`. It also support project specific configration,
That means it will load `.SpaceVim.d/init.vim` from the root of your project.
## E492: Not an editor command: ^M
The problem was git auto added ^M when cloning, solved by:
```sh
git config --global core.autocrlf input
```
## Why SpaceVim can not display default colorscheme?
By default, SpaceVim use true colors, so you should make sure your terminal support true colors, This is an articl about
what is true colors and the terminals which support true colors.