Skip to content

Instantly share code, notes, and snippets.

@dariodip
Created December 3, 2019 10:54
Show Gist options
  • Save dariodip/dba161db18ada3f67b81843906f6349b to your computer and use it in GitHub Desktop.
Save dariodip/dba161db18ada3f67b81843906f6349b to your computer and use it in GitHub Desktop.
#=============================================================================
# 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]
# set spacevim theme. by default colorscheme layer is not loaded,
# if you want to use more colorscheme, please load the colorscheme
# layer
colorscheme = "gruvbox"
colorscheme_bg = "light"
# Disable guicolors in basic mode, many terminal do not support 24bit
# true colors
enable_guicolors = false
# Disable statusline separator, if you want to use other value, please
# install nerd fonts
statusline_separator = "bar"
statusline_inactive_separator = "bar"
buffer_index_type = 4
windows_index_type = 3
enable_tabline_filetype_icon = true
enable_statusline_mode = true
statusline_unicode_symbols = true
# Enable vim compatible mode, avoid changing origin vim key bindings
vimcompatible = false
enable_key_frequency = true
enable_neomake = true
enable_ale = false
lint_on_the_fly = false
filemanager = "vimfiler"
filetree_direction = "left"
# Enable autocomplete layer
[[layers]]
name = 'autocomplete'
auto-completion-return-key-behavior = "complete"
auto-completion-tab-key-behavior = "cycle"
[[layers]]
name = 'shell'
default_position = 'bottom'
default_height = 30
[[layers]]
name = "denite"
[[layers]]
name = "checkers"
show_cursor_error = true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment