Created
March 14, 2020 18:59
-
-
Save tsteinholz/9728442facb389e34a2f3a5b69b7cbf4 to your computer and use it in GitHub Desktop.
SpaceVim Configuration
This file contains hidden or 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
| #============================================================================= | |
| # init.toml --- Thomas Steinholz's SpaceVim Configuration | |
| #============================================================================= | |
| # All SpaceVim option below [option] section | |
| [options] | |
| colorscheme = "onedark" | |
| colorscheme_bg = "dark" | |
| enable_guicolors = false | |
| #guifont = "DroidSansMono Nerd Font:h12" | |
| #guifont = "Droid Sans Mono for Powerline Plus Nerd File Types Mono:h11" | |
| guifont = "SauceCodePro Nerd Font:h12" | |
| # Core Status Line | |
| statusline_separator = "arrow" #"slant" | |
| statusline_inactive_separator = "bar" | |
| buffer_index_type = 4 | |
| windows_index_type = 3 | |
| # left sections of statusline | |
| statusline_left_sections = [ | |
| 'winnr', | |
| 'filename', | |
| 'minor mode lighters', | |
| 'version control info', | |
| 'search status' | |
| ] | |
| # right sections of statusline | |
| statusline_right_sections = [ | |
| 'date', | |
| 'time', | |
| 'major' | |
| 'cursorpos' | |
| ] | |
| enable_tabline_filetype_icon = true | |
| enable_statusline_mode = true | |
| statusline_unicode_symbols = true | |
| # Enable vim compatible mode, avoid changing origin vim key bindings | |
| vimcompatible = true | |
| # Enable autocomplete layer | |
| [[layers]] | |
| name = 'autocomplete' | |
| auto-completion-return-key-behavior = "complete" | |
| auto-completion-tab-key-behavior = "cycle" | |
| # Enable Color Schemes | |
| [[layers]] | |
| name = "colorscheme" | |
| # Enable Some UI Elements | |
| [[layers]] | |
| name = "ui" | |
| # Enable Git Support | |
| [[layers]] | |
| name = "git" | |
| [[layers]] | |
| name = "VersionControl" | |
| enable-gtm-status = true | |
| # | |
| [[layers]] | |
| name = 'shell' | |
| default_position = 'top' | |
| default_height = 30 | |
| [[layers]] | |
| name = "lang#sh" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment