2018-04-29 20:33:01 +08:00
|
|
|
#=============================================================================
|
|
|
|
# dark_powered.toml --- dark powered configuration example for SpaceVim
|
2020-08-31 21:24:27 +08:00
|
|
|
# Copyright (c) 2016-2020 Wang Shidong & Contributors
|
2018-04-29 20:33:01 +08:00
|
|
|
# Author: Wang Shidong < wsdjeg at 163.com >
|
|
|
|
# URL: https://spacevim.org
|
|
|
|
# License: GPLv3
|
|
|
|
#=============================================================================
|
2018-04-29 20:15:33 +08:00
|
|
|
|
|
|
|
# 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"
|
2019-03-04 14:11:55 +08:00
|
|
|
colorscheme_bg = "dark"
|
2018-04-29 20:15:33 +08:00
|
|
|
# Disable guicolors in basic mode, many terminal do not support 24bit
|
|
|
|
# true colors
|
2018-06-03 20:14:17 +08:00
|
|
|
enable_guicolors = true
|
2018-04-29 20:15:33 +08:00
|
|
|
# Disable statusline separator, if you want to use other value, please
|
|
|
|
# install nerd fonts
|
2018-04-29 20:33:01 +08:00
|
|
|
statusline_separator = "arrow"
|
2020-10-15 22:23:51 +08:00
|
|
|
statusline_iseparator = "arrow"
|
2018-04-29 20:15:33 +08:00
|
|
|
buffer_index_type = 4
|
2018-05-13 12:59:41 +08:00
|
|
|
enable_tabline_filetype_icon = true
|
2019-03-04 19:51:47 +08:00
|
|
|
enable_statusline_mode = false
|
2018-04-29 20:15:33 +08:00
|
|
|
|
|
|
|
# Enable autocomplete layer
|
|
|
|
[[layers]]
|
|
|
|
name = 'autocomplete'
|
2020-04-11 22:55:55 +08:00
|
|
|
auto_completion_return_key_behavior = "complete"
|
|
|
|
auto_completion_tab_key_behavior = "smart"
|
2018-04-29 20:15:33 +08:00
|
|
|
|
|
|
|
[[layers]]
|
|
|
|
name = 'shell'
|
|
|
|
default_position = 'top'
|
|
|
|
default_height = 30
|