mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-26 14:50:04 +08:00
1472a549c6
* Update shell layer doc * Update script for update layer index * Update script for update layer index * Update colorscheme layer doc * Update autocomplete layer doc * Update checkers layer doc * Update chinese layer doc * Update chat layer doc * Update faq * Update VersionControl layer doc * Update help file * Update cscope layer doc * Use cn group * Update debug layer doc * Update ctrlp layer doc * Update default layer doc * Improve the community page * Improve the community page * Update default layer doc * Update denite layer doc * Update git layer doc * Update ui layer doc * Update tags layer doc * Update leaderf layer doc * Update fzf layer doc * Update unite layer doc * Update tools layer doc * Update index * Update tools#dash layer doc * Update lsp layer doc * Update faq
9.2 KiB
9.2 KiB
title | description | keywords | lang |
---|---|---|---|
可用模块 | 简述什么是模块,如何启用和禁用 SpaceVim 模块,以及如何设置模块选项。并罗列出 SpaceVim 中所有内置的模块。 | layer,layers | cn |
什么是模块
SpaceVim 是一个社区驱动的 vim 配置集合,通常一个 Vim 的配置集合包含了诸多的 Vim 插件以及相关配置。而 SpaceVim 是以模块的方式来组织和管理这些插件以及相关 的配置。默认情况下,这些模块都是禁用的,用户可以根据自己需要,或者是项目需要 来载入指定的模块以获取相关功能。
通过模块的方式管理插件和相关配置,为使用者节省了大量的搜索插件和调试插件的时
间。用户仅仅需要根据自己的实际需求,来启用相关模块。比如,当我需要频繁调用终
端时,可以启用终端支持的 shell
模块。
如何启用模块
以 shell
模块为例,启用该模块,并且设定一些模块选项,指定终端打开位置为
顶部,高度 30。
[[layers]]
name = "shell"
default_position = "top"
default_height = 30
如何禁用模块
在 SpaceVim 内,默认启用了一些模块,当你需要禁用某一个模块时,需要指定模块
选项 enable
为 false。enable
这一选项缺省为 true,所以启用模块时,这一
选项可以省略。
[[layers]]
name = "shell"
enable = false
可用模块
名称 | 描述 |
---|---|
VersionControl | 这一模块为 SpaceVim 提供了通用的代码版本控制支持,该模块支持 Git、Mercurial、Bazaar、SVN 等等多种后台工具。 |
autocomplete | 这一模块为 SpaceVim 提供了自动补全的框架,包括语法补全等多种补全来源,同时提供了代码块自动完成等特性。 |
chat | chat 模块为 SpaceVim 提供了一个聊天框架,目前支持微信聊天和 QQ 聊天,同时支持自定义聊天服务器。 |
checkers | 这一模块为 SpaceVim 提供了代码语法检查的特性,同时提供代码实时检查,并列出语法错误的位置 |
chinese | 该模块为中文用户提供了中文的 Vim 帮助文档,同时提供部分插件的中文帮助文档。 |
colorscheme | colorscheme 模块为 SpaceVim 提供了一系列的常用颜色主题,默认情况下使用深色 gruvbox 作为默认主题。该模块提供了快速切换主题、随即主题等特性 |
cscope | cscope 模块为 SpaceVim 他提供了一个智能的 cscope 和 pycscope 辅助工具,可以快速调用 cscope 常用命令 |
ctrlp | 提供以 ctrlp 为核心的模糊查找机制,支持模糊搜索文件、历史纪录、函数列表等。 |
debug | 这一模块为 SpaceVim 提供了 debug 的常用功能,采用 vebugger 作为后台框架,支持多种 debug 工具。 |
default | SpaceVim default 模块并不包含插件,但提供了一些更好的默认设置, |
denite | This layers provide a heavily customized Denite centric work-flow |
git | 这一模块为 SpaceVim 提供了 git 支持,根据当前 Vim 版本特性,选择 gina 或者 gita 作为默认的后台 git 插件。 |
lang#c | This layer is for c/c++/object-c development |
lang#dart | This layer is for dart development, provide autocompletion, syntax checking, code format for dart file. |
lang#elixir | This layer is for elixir development, provide autocompletion, syntax checking, code format for elixir file. |
lang#go | This layer is for golang development. It also provides additional language-specific key mappings. |
lang#haskell | This layer is for haskell development |
lang#html | Edit html in SpaceVim, with this layer, this layer provides code completion, syntax checking and code formatting for html. |
lang#java | This layer is for Java development. All the features such as code completion, formatting, syntax checking, REPL and debug have be done in this layer. |
lang#javascript | This layer is for JaveScript development |
lang#lisp | for lisp development |
lang#lua | This layer is for lua development, provide autocompletion, syntax checking, code format for lua file. |
lang#markdown | Edit markdown within vim, autopreview markdown in the default browser, with this layer you can also format markdown file. |
lang#php | This layer adds PHP language support to SpaceVim |
lang#python | This layer is for Python development, provide autocompletion, syntax checking, code format for python file. |
lang#ruby | This layer is for ruby development, provide autocompletion, syntax checking, code format for ruby file. |
lang#typescript | This layer is for TypeScript development |
lang#vim | This layer is for writting vim script, including code completion, syntax checking and buffer formatting |
language-server-protocol | This layers provides language server protocol for vim and neovim |
shell | 这一模块为 SpaceVim 提供了终端集成特性,优化内置终端的使用体验 |
tags | This layer provide tags manager for project |
ui | Awesome UI layer for SpaceVim, provide IDE-like UI for neovim and vim in both TUI and GUI |