1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 13:00:04 +08:00

Fix config

This commit is contained in:
wsdjeg 2018-04-29 20:33:01 +08:00
parent 427de049cc
commit 75ea17698c
2 changed files with 22 additions and 8 deletions

View File

@ -1,4 +1,10 @@
# This is basic configuration example for SpaceVim
#=============================================================================
# basic.toml --- basic configuration example for SpaceVim
# Copyright (c) 2016-2017 Wang Shidong & Contributors
# Author: Wang Shidong < wsdjeg at 163.com >
# URL: https://spacevim.org
# License: GPLv3
#=============================================================================
# All SpaceVim option below [option] section
[options]
@ -9,14 +15,16 @@
background = "dark"
# Disable guicolors in basic mode, many terminal do not support 24bit
# true colors
guicolors = true
guicolors = false
# Disable statusline separator, if you want to use other value, please
# install nerd fonts
statusline_separator = "nil"
statusline_separator = "bar"
statusline_inactive_separator = "bar"
buffer_index_type = 4
filetype_icon = false
statusline_display_mode = false
# Enable vim compatible mode, avoid changing origin vim key bindings
vimcompatible = 1
# Enable autocomplete layer
[[layers]]

View File

@ -1,4 +1,10 @@
# This is basic configuration example for SpaceVim
#=============================================================================
# dark_powered.toml --- dark powered configuration example for SpaceVim
# Copyright (c) 2016-2017 Wang Shidong & Contributors
# Author: Wang Shidong < wsdjeg at 163.com >
# URL: https://spacevim.org
# License: GPLv3
#=============================================================================
# All SpaceVim option below [option] section
[options]
@ -12,17 +18,17 @@
guicolors = true
# Disable statusline separator, if you want to use other value, please
# install nerd fonts
statusline_separator = "nil"
statusline_separator = "bar"
statusline_separator = "arrow"
statusline_inactive_separator = "arrow"
buffer_index_type = 4
filetype_icon = false
filetype_icon = true
statusline_display_mode = false
# Enable autocomplete layer
[[layers]]
name = 'autocomplete'
auto-completion-return-key-behavior = "complete"
auto-completion-tab-key-behavior = "cycle"
auto-completion-tab-key-behavior = "smart"
[[layers]]
name = 'shell'