mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 06:40:05 +08:00
31 lines
905 B
TOML
31 lines
905 B
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
|
|
colorscheme = "gruvbox"
|
|
background = "dark"
|
|
# Disable guicolors in basic mode, many terminal do not support 24bit
|
|
# true colors
|
|
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
|
|
filetype_icon = false
|
|
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
|