1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-24 06:40:05 +08:00
SpaceVim/mode/basic.vim
Wang Shidong e55d6cf270
Improve core config (#1455)
* Improve core config

* Fixup

* Update mode

* Remove plugin groups

* Enable denite layer if has +py3

* Update dev scripts

* Add project patten pom.xml for java layer

* Add tools layer
2018-03-03 21:52:08 +08:00

31 lines
848 B
VimL

"=============================================================================
" basic.vim --- Basic mode of SpaceVim
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
" SpaceVim Options: {{{
" Disable true colors
let g:spacevim_enable_guicolors = 0
" Use empty string as statusline separator
let g:spacevim_statusline_separator = 'nil'
" Use | as inactive separator of statusline
let g:spacevim_statusline_inactive_separator = 'bar'
" Use general integer as buffer index
let g:spacevim_buffer_index_type = 4
" Disable Filetype icon
let g:spacevim_enable_tabline_filetype_icon = 0
" Disable mode in statusline
let g:spacevim_enable_statusline_display_mode = 0
" }}}