mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-04-13 12:30:40 +08:00
Wiki: Update cn wiki (#1752)
This commit is contained in:
parent
29ab11916a
commit
b68eec6725
@ -1,4 +0,0 @@
|
||||
- [](https://github.com/SpaceVim/SpaceVim/graphs/contributors)
|
||||
- [vimdoc](https://github.com/google/vimdoc) generate doc file for SpaceVim
|
||||
- [Rafael Bodill](https://github.com/rafi) and his vim-config
|
||||
- [Bailey Ling](https://github.com/bling) and his dotvim
|
@ -1 +0,0 @@
|
||||
new features will be list here:
|
@ -1,13 +1,22 @@
|
||||
This page documents changes in master branch which may require users to update configuration.
|
||||
This page documents changes in master branch since last release v0.7.0
|
||||
|
||||
### PreRelease
|
||||
|
||||
#### Changed
|
||||
The next release is v0.8.0.
|
||||
|
||||
#### Added
|
||||
|
||||
#### Changed
|
||||
|
||||
#### Removed
|
||||
|
||||
### V0.6.0
|
||||
#### Doc
|
||||
|
||||
SpaceVim releases v0.6.0 at 2017-12-30, please check the [release page](https://spacevim.org/SpaceVim-release-v0.6.0/) for all the details
|
||||
#### Wiki && Website
|
||||
|
||||
#### Others
|
||||
|
||||
### Latest Release
|
||||
|
||||
SpaceVim releases v0.7.0 at 2018-03-19, please check the
|
||||
[release page](https://spacevim.org/SpaceVim-release-v0.7.0/) for all the details
|
||||
|
@ -1,25 +1,25 @@
|
||||
welcome to <img src="https://spacevim.org/SpaceVim.png" height="17" width="17"> **SpaceVim** wiki, a Resources guideline for SpaceVim!
|
||||
|
||||
- [Introduction](Introduction)
|
||||
- **[FAQ](https://spacevim.org/faq/)**
|
||||
- [Progress/Roadmap](Progress)
|
||||
- [Features](Features)
|
||||
- [Project layout](project_layout)
|
||||
|
||||
## Users
|
||||
- [Home](https://spacevim.org): The official website of SpaceVim
|
||||
- [FAQ](https://spacevim.org/faq/): The most asked questions about SpaceVim
|
||||
- [Progress/Roadmap](https://spacevim.org/roadmap/): The roadmap and development progress of SpaceVim
|
||||
- [Blogs](https://spacevim.org/blog/): Latest news and posts about SpaceVim
|
||||
- [Project layout](project_layout): Layout of current project
|
||||
|
||||
- [Documentation](https://spacevim.org/documentation)
|
||||
- [Quick start guide](quick-start-guide)
|
||||
- [Getting Help](getting-help)
|
||||
- [Install](Installing-SpaceVim)
|
||||
- [Update](Update)
|
||||
- [Community](http://spacevim.org/community/)
|
||||
### Users
|
||||
|
||||
## Developers
|
||||
- [Getting Help](getting-help): A guide for getting help about using SpaceVim.
|
||||
- [Quick start guide](https://spacevim.org/quick-start-guide/): A quick start guide about SpaceVim
|
||||
- [Documentation](https://spacevim.org/documentation): SpaceVim Documentation
|
||||
- [Community](http://spacevim.org/community/): Official community
|
||||
|
||||
the wiki is generated from [`wiki/`](https://github.com/SpaceVim/SpaceVim/tree/master/wiki) directory automatically, if you want to contribute to the wiki, please use pull request.
|
||||
### Developers
|
||||
|
||||
This wiki is generated from [`wiki/`](https://github.com/SpaceVim/SpaceVim/tree/master/wiki) directory
|
||||
automatically, if you want to contribute to the wiki, please send pull request to SpaceVim repo.
|
||||
|
||||
- [Development guidelines](https://spacevim.org/development/)
|
||||
- [CONTRIBUTING](https://github.com/SpaceVim/SpaceVim/blob/master/CONTRIBUTING.md)
|
||||
- [Support SpaceVim](support-spacevim)
|
||||
- [contribute to SpaceVim](https://github.com/SpaceVim/SpaceVim/blob/master/CONTRIBUTING.md)
|
||||
- [Write post about SpaceVim](write-post-about-spacevim)
|
||||
- [Credits & Thanks](credits--thanks)
|
||||
- [Development tips](development-tips)
|
||||
|
@ -1,49 +0,0 @@
|
||||
### 1. Requirements
|
||||
|
||||
**1) Powerline font:**
|
||||
|
||||
By defalut SpaceVim use [DejaVu Sans Mono for Powerline](https://github.com/powerline/fonts/tree/master/DejaVuSansMono), to make statusline render correctly, you need to install the font. [powerline extra symbols](https://github.com/ryanoasis/powerline-extra-symbols) also should be installed. To show the filetype icon in the tabline, you need to install [nerd-fonts](https://github.com/ryanoasis/nerd-fonts).
|
||||
|
||||
**2) Vim 7.4 above or neovim:**
|
||||
|
||||
- [neovim installation](https://github.com/neovim/neovim/wiki/Installing-Neovim)
|
||||
|
||||
- [install vim with python, python3 and lua support](https://github.com/Valloric/YouCompleteMe/wiki/Building-Vim-from-source)
|
||||
|
||||
**3) git:**
|
||||
|
||||
SpaceVim will download all plugins via git.
|
||||
|
||||
### 2. Install SpaceVim in Linux/Mac
|
||||
|
||||
Install SpaceVim with the command below:
|
||||
|
||||
```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
|
||||
```
|
||||
|
||||
### 3. Install SpaceVim in windows
|
||||
|
||||
- For vim in windows, please just clone this repo as vimfiles in you Home directory.
|
||||
by default, when open a cmd, the current dir is your Home directory, run this command in cmd.
|
||||
make sure you have a backup of your own vimfiles. also you need remove `~/_vimrc` in your home directory.
|
||||
|
||||
```sh
|
||||
git clone https://github.com/SpaceVim/SpaceVim.git vimfiles
|
||||
```
|
||||
|
||||
- For neovim in windows, please clone this repo as `AppData\Local\nvim` in your home directory.
|
||||
for more info, please check out [neovim's wiki](https://github.com/neovim/neovim/wiki/Installing-Neovim).
|
||||
by default, when open a cmd, the current dir is your Home directory, run this command in cmd.
|
||||
|
||||
```bash
|
||||
git clone https://github.com/SpaceVim/SpaceVim.git AppData\Local\nvim
|
||||
```
|
@ -1,9 +0,0 @@
|
||||
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.
|
||||
|
||||
Please star the project on github - it is a great way to show your appreciation while providing us motivation to continue working on this project. The extra visibility for the project doesn't hurt either!
|
||||
|
||||

|
||||
|
||||
See the [documentation](https://spacevim.org/documentation) or [the list of layers](http://spacevim.org/layers/) for more information.
|
||||
|
||||
If you are new to vim, you should learning about Vim in general, read [vim-galore](https://github.com/mhinz/vim-galore).
|
@ -1 +0,0 @@
|
||||
See the [Roadmap](https://spacevim.org/roadmap/) and <kbd>:help SpaceVim-features</kbd>.
|
@ -1,7 +0,0 @@
|
||||
Read <kbd>:h SPUpdate</kbd>, for example you can update SpaceVim with the command below:
|
||||
|
||||
```viml
|
||||
:SPUpdate SpaceVim
|
||||
```
|
||||
after updating done, you will see:
|
||||

|
@ -1 +0,0 @@
|
||||
if you want to write something about SpaceVim, and want your post be linked in [SpaceVim's blog page](https://spacevim.org/blog), please show us the link.
|
@ -1,16 +1,16 @@
|
||||
[](Home)
|
||||
--
|
||||
[Introduction](introduction)
|
||||
[Community](community)
|
||||
[Website](https://spacevim.org/)
|
||||
[Community](https://spacevim.org/community/)
|
||||
[FAQ](https://spacevim.org/faq/)
|
||||
[Layers](https://spacevim.org/layers/)
|
||||
|
||||
**Users**
|
||||
[Install](Installing-SpaceVim)
|
||||
[Following HEAD](Following-HEAD)
|
||||
[Getting Help](getting-help)
|
||||
[Docs](http://spacevim.org/documentation/)
|
||||
[Following HEAD](Following-HEAD)
|
||||
|
||||
**Developers**
|
||||
[Contribute](https://spacevim.org/development/)
|
||||
[Tips & Tools](Development-tips)
|
||||
[Tips & Tools](development-tips)
|
||||
[Code style](http://spacevim.org/conventions/)
|
||||
|
@ -1,27 +0,0 @@
|
||||
# Community
|
||||
|
||||
Visit these resources for help or general questions.
|
||||
|
||||
## Discuss
|
||||
|
||||
- [/r/spacevim on Reddit](https://reddit.com/r/spacevim)
|
||||
- [Mailing list](https://groups.google.com/forum/#!forum/spacevim)
|
||||
- [Twitter](https://twitter.com/SpaceVim)
|
||||
- [Facebook](https://www.facebook.com/SpaceVim)
|
||||
|
||||
## Ask
|
||||
|
||||
- Try [vi.stackexchange.com](https://vi.stackexchange.com/) for **usage and configuration questions**.
|
||||
- [issue tracker](https://github.com/SpaceVim/SpaceVim/issues) for issue and feature requests
|
||||
|
||||
## Chat
|
||||
|
||||
All of these channels are bridged together. Click on one of the badges below to join the chat, In all of these channels, messages from `SpaceVimBot` is sent by remote user, and the format of the remote messages is:
|
||||
|
||||
"[{PROTOCOL}] <{NICK}> {MESSAGE}"
|
||||
|
||||
- [`SpaceVim/SpaceVim` on gitter](https://gitter.im/SpaceVim/SpaceVim)
|
||||
- [`#spacevim` on FreeNode](https://webchat.freenode.net/?channels=spacevim)
|
||||
- [`t.me/SpaceVim` on telegram](https://t.me/SpaceVim)
|
||||
- [`#spacevim:matrix.org` on Matrix](https://riot.im/app/#/room/%23spacevim:matrix.org)
|
||||
- [`#spacevim` on slack](https://spacevim.slack.com/messages/C88CTJ62J)
|
@ -1,51 +0,0 @@
|
||||
### Quick start guide
|
||||
|
||||
The default configuration file of SpaceVim is `~/.SpaceVim.d/init.toml`. This is
|
||||
an example for basic usage of SpaceVim. For more info, please checkout SpaceVim
|
||||
documentation.
|
||||
|
||||
```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, the value of this option is a string.
|
||||
colorscheme = "gruvbox"
|
||||
colorscheme_bg = "dark"
|
||||
# Disable guicolors in basic mode, many terminal do not support 24bit
|
||||
# true colors, the type of the value is boolean, true or false.
|
||||
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
|
||||
# Display file type icon on the tabline, If you do not have nerd fonts
|
||||
# installed, please change the value to false
|
||||
enable_tabline_filetype_icon = true
|
||||
# Display current mode text on statusline, by default It is disabled,
|
||||
# only color will be changed when switch modes.
|
||||
enable_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
|
||||
|
||||
# This is an example for adding custom plugins lilydjwg/colorizer
|
||||
[[custom_plugins]]
|
||||
name = "lilydjwg/colorizer"
|
||||
merged = 0
|
||||
```
|
||||
|
||||
Comprehensive documentation is available for each layer by <kbd>:h SpaceVim</kbd>.
|
||||
|
||||
You can also check the [general documentation](http://spacevim.org/documentation/).
|
Loading…
x
Reference in New Issue
Block a user