1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-24 06:10:05 +08:00
SpaceVim/docs/layers/core.md

47 lines
1.0 KiB
Markdown
Raw Normal View History

2018-09-12 20:14:20 +08:00
---
title: "SpaceVim core layer"
description: "SpaceVim core layer provides many default key bindings and features."
---
# [Available Layers](../) >> core
2019-01-07 21:15:22 +08:00
2018-09-12 20:14:20 +08:00
<!-- vim-markdown-toc GFM -->
- [Intro](#intro)
- [Features](#features)
- [FileTree](#filetree)
2018-09-12 20:14:20 +08:00
- [Configuration](#configuration)
<!-- vim-markdown-toc -->
## Intro
2019-01-07 21:15:22 +08:00
2021-09-19 17:32:31 +08:00
The `core` layer of SpaceVim. This layer is enabled by default, and it provides filetree,
comment key bindings etc.
2018-09-12 20:14:20 +08:00
## Features
2019-01-07 21:15:22 +08:00
### FileTree
2021-09-19 17:32:31 +08:00
The filetree is included in core layer, by default `nerdtree` is used as filetree manager.
To use defx, please add following snippet into your configuration file.
```toml
[options]
2021-09-19 17:32:31 +08:00
filemanager = "defx"
```
2018-09-12 20:14:20 +08:00
## Configuration
2019-01-07 21:15:22 +08:00
- `filetree_show_hidden`: option for showing hidden file in filetree, disabled by default.
- `enable_smooth_scrolling`: enable/disabled smooth scrolling key bindings, enabled by default.
```toml
[[layers]]
name = 'core'
filetree_show_hidden = true
enable_smooth_scrolling = true
2021-09-19 17:32:31 +08:00
filetree_opened_icon = ''
filetree_closed_icon = ''
```