Skip to content

Instantly share code, notes, and snippets.

@1ncend1ary
Created September 4, 2021 14:52
Show Gist options
  • Save 1ncend1ary/c167d13cdb904ecc321178e5835615c0 to your computer and use it in GitHub Desktop.
Save 1ncend1ary/c167d13cdb904ecc321178e5835615c0 to your computer and use it in GitHub Desktop.
#=============================================================================
# basic.toml --- basic 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 = false
# Disable statusline separator, if you want to use other value, please
# install nerd fonts
# statusline_separator = 'arrow'
statusline_separator = "nil"
statusline_iseparator = "bar"
buffer_index_type = 4
windows_index_type = 3
enable_tabline_filetype_icon = false
enable_statusline_mode = false
statusline_unicode_symbols = false
# Enable vim compatible mode, avoid changing origin vim key bindings
vimcompatible = true
bootstrap_before = 'myspacevim#before'
bootstrap_after = 'myspacevim#after'
[[layers]]
name = 'shell'
default_position = 'top'
default_height = 30
[[layers]]
name = "lang#markdown"
enabled_formatter = ['prettier']
[[layers]]
name = 'lang#c'
enable_clang_syntax_highlight = true
[[custom_plugins]]
repo = "ferrine/md-img-paste.vim"
merged = false
[[layers]]
name = "lang#latex"
[[layers]]
name = "lang#typescript"
[[layers]]
name = "lang#python"
enabled_linters = ['python', 'pylint']
[[custom_plugins]]
repo = "neomake/neomake"
merged = false
[[layers]]
name = "incsearch"
[[custom_plugins]]
repo = "embear/vim-foldsearch"
merged = false
[[custom_plugins]]
repo = "lyokha/vim-xkbswitch"
merged = false
[[custom_plugins]]
repo = "SirVer/ultisnips"
merged = false
[[custom_plugins]]
repo = "honza/vim-snippets"
merged = "false"
[[custom_plugins]]
repo = "lervag/vimtex"
merged = false
[[custom_plugins]]
repo = "osamuaoki/vim-spell-under"
merged = false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment