mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-23 07:20:04 +08:00
28 lines
714 B
VimL
28 lines
714 B
VimL
"=============================================================================
|
|
" ginit.vim --- Entry file for neovim-qt
|
|
" Copyright (c) 2016-2023 Wang Shidong & Contributors
|
|
" Author: Wang Shidong < wsdjeg@outlook.com >
|
|
" URL: https://spacevim.org
|
|
" License: GPLv3
|
|
"=============================================================================
|
|
|
|
if exists('g:GuiLoaded')
|
|
if exists('g:spacevim_guifont') && !empty(g:spacevim_guifont)
|
|
exe 'Guifont! ' . g:spacevim_guifont
|
|
endif
|
|
" As using neovim-qt by default
|
|
|
|
" Disable gui popupmenu
|
|
if exists(':GuiPopupmenu') == 2
|
|
GuiPopupmenu 0
|
|
endif
|
|
|
|
" Disbale gui tabline
|
|
if exists(':GuiTabline') == 2
|
|
GuiTabline 0
|
|
endif
|
|
endif
|
|
|
|
" vim:set et sw=2:
|
|
|