1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 20:00:05 +08:00
SpaceVim/doc/SpaceVim.cnx
Wang Shidong 7093d3aa0c
fix link (#4471)
close #4466
2021-09-18 22:57:06 +08:00

75 lines
3.3 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

*SpaceVim.txt*
/###### /## /##/##
/##__ ## | ## | #|__/
| ## \__/ /###### /###### /####### /######| ## | ##/##/######/####
| ###### /##__ ##|____ ##/##_____//##__ #| ## / ##| #| ##_ ##_ ##
\____ #| ## \ ## /######| ## | ########\ ## ##/| #| ## \ ## \ ##
/## \ #| ## | ##/##__ #| ## | ##_____/ \ ###/ | #| ## | ## | ##
| ######| #######| ######| ######| ####### \ #/ | #| ## | ## | ##
\______/| ##____/ \_______/\_______/\_______/ \_/ |__|__/ |__/ |__/
| ##
| ##
|__/
wsdjeg *spacevim* *SpaceVim*
==============================================================================
CONTENTS *SpaceVim-contents*
1. 简介.......................................................|SpaceVim-intro|
2. 选项.....................................................|SpaceVim-options|
1. default_indent......................|SpaceVim-options-default_indent|
2. relativenumber......................|SpaceVim-options-relativenumber|
3. Configuration...........................................|SpaceVim-config|
==============================================================================
简介 *SpaceVim-intro*
SpaceVim 是一个社区驱动的模块化 Vim 配置,这一思想概念起源于 Spacemacs。
==============================================================================
选项 *SpaceVim-options*
SpaceVim 使用 `~/.SpaceVim.d/init.toml` 作为默认的全局配置文件。所有的选项
都可以在该文件中进行设置,同时,`~/.SpaceVim.d/` 将被加入 Vim 的运行时(&rtp内。因此可以在该目录下创建私有的 Vim
脚本文件。SpaceVim 也支持项目的本地配置,在项目的根目录下,`.SpaceVim.d/init.toml`
即为默认的本地配置,`./SpaceVim./` 目录同样会被加入到 Vim 的运行时(&rtp内。
以下即为一个配置示例:
>
[options]
enable-guicolors = true
max-column = 120
<
==============================================================================
DEFAULT_INDENT *SpaceVim-options-default_indent*
设置默认的对齐具体,默认的值为 2。
>
default_indent = 2
<
==============================================================================
RELATIVENUMBER *SpaceVim-options-relativenumber*
启用/禁用相对行号,相对行号可以用于快速上下多行移动,默认已启用。
>
relativenumber = true
<
==============================================================================
CONFIGURATION *SpaceVim-config*
*g:spacevim_default_indent*
设置默认的对齐具体,默认的值为 2。
>
let g:spacevim_default_indent = 2
<
*g:spacevim_relativenumber*
启用/禁用相对行号,相对行号可以用于快速上下多行移动,默认已启用。
vim:tw=78:ts=8:ft=help:norl: