Skip to content

Instantly share code, notes, and snippets.

@pplmx
Last active March 3, 2023 06:39
Show Gist options
  • Save pplmx/14162f465b01df9f078f246cb7df5655 to your computer and use it in GitHub Desktop.
Save pplmx/14162f465b01df9f078f246cb7df5655 to your computer and use it in GitHub Desktop.
SpaceVim init.toml
#=============================================================================
# dark_powered.toml --- dark powered configuration example for SpaceVim
# Copyright (c) 2016-2022 Wang Shidong & Contributors
# Author: Wang Shidong < wsdjeg@outlook.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 = "SpaceVim"
colorscheme_bg = "dark"
# Disable guicolors in basic mode, many terminal do not support 24bit
# true colors
enable_guicolors = true
# Disable statusline separator, if you want to use other value, please
# install nerd fonts
statusline_separator = "arrow"
statusline_iseparator = "arrow"
buffer_index_type = 4
enable_tabline_filetype_icon = true
enable_statusline_mode = true
default_indent = 4
expand_tab = true
# Enable autocomplete layer
[[layers]]
name = 'autocomplete'
auto_completion_return_key_behavior = "complete"
auto_completion_tab_key_behavior = "smart"
[[layers]]
name = 'shell'
default_position = 'top'
default_height = 30
[[layers]]
name = "default"
[[layers]]
name = "git"
git_plugin = 'fugitive'
[[layers]]
name = "lang#c"
[[layers]]
name = "lang#javascript"
auto_fix = true
enable_flow_syntax = true
[[layers]]
name = "lang#dockerfile"
[[layers]]
name = "lang#go"
[[layers]]
name = "lang#java"
[[layers]]
name = "lang#python"
[[layers]]
name = "lang#rust"
[[layers]]
name = "lang#markdown"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment