SpaceVim

A modular Vim/Neovim configuration


Home | About | Quick start guide | Documentation | Development | Community | Sponsors | 中文


Available Layers » core

Intro

The core layer of SpaceVim. This layer is enabled by default, and it provides filetree, comment key bindings etc.

Features

FileTree

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.

[options]
  filemanager = "defx"

Configuration

[[layers]]
    name = 'core'
    filetree_show_hidden = true
    enable_smooth_scrolling = true
    filetree_opened_icon = ''
    filetree_closed_icon = ''

If enable_quickfix_key_bindings is true, The following key bindings can be used in quickfix window, and which also can be change in bootstrap function.

Key bindings description
dd remove item under cursor line in normal mode
d remove selected items in visual mode
c remove items which filename match input regex
C remove items which filename not match input regex
o remove items which error description match input regex
O remove items which error description not match input regex
u undo last change

Options to change these mappings:

Powered by Jekyll