Last active
July 3, 2021 03:37
-
-
Save JackyYin/e1e0692ab68b75cbbd148214eb669524 to your computer and use it in GitHub Desktop.
my spacevim config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#============================================================================= | |
# dark_powered.toml --- dark powered configuration example for SpaceVim | |
# Copyright (c) 2016-2020 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 = "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 = false | |
filetree_direction = "left" | |
filemanager = "nerdtree" | |
enable_statusline_bfpath = true | |
bootstrap_before = "myspacevim#before" | |
# vim-matchup.vim may cause performance drop | |
[[layers]] | |
name = 'core' | |
# [[layers]] | |
# name = "checkers" | |
# lint_on_the_fly = false | |
# lint_on_save = false | |
# Enable autocomplete layer | |
# asyncomplete.vim may cause performance drop | |
[[layers]] | |
name = 'autocomplete' | |
auto_completion_return_key_behavior = "complete" | |
auto_completion_tab_key_behavior = "smart" | |
[[layers]] | |
name = 'shell' | |
default_position = 'float' | |
default_height = 30 | |
[[layers]] | |
name = "lang#c" | |
enable_clang_syntax_highlight = true | |
[layer.clang_std] | |
cpp = "c11" | |
[[layers]] | |
name = "fzf" | |
[[layers]] | |
name = "git" | |
[[layers]] | |
name = "github" | |
[[layers]] | |
name = "chat" | |
[[layers]] | |
name = "lang#vim" | |
[[layers]] | |
name = "lang#javascript" | |
# may cause performance issue | |
[[custom_plugins]] | |
repo = "tpope/vim-fugitive" | |
[[custom_plugins]] | |
repo = "tpope/vim-commentary" | |
[[custom_plugins]] | |
repo = "voldikss/vim-floaterm" | |
# performance killer | |
[[custom_plugins]] | |
repo = "vim-syntastic/syntastic" | |
[[custom_plugins]] | |
repo = "ryanoasis/vim-devicons" | |
[[custom_plugins]] | |
repo = "lambdalisue/glyph-palette.vim" | |
# [[custom_plugins]] | |
# repo = "tiagofumo/vim-nerdtree-syntax-highlight" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment