1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 04:10:05 +08:00
SpaceVim/ginit.vim

28 lines
714 B
VimL
Raw Permalink Normal View History

"=============================================================================
" ginit.vim --- Entry file for neovim-qt
2023-03-26 13:44:47 +08:00
" Copyright (c) 2016-2023 Wang Shidong & Contributors
2020-09-19 16:19:58 +08:00
" Author: Wang Shidong < wsdjeg@outlook.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
2017-03-06 23:26:26 +08:00
if exists('g:GuiLoaded')
2020-05-09 22:21:33 +08:00
if exists('g:spacevim_guifont') && !empty(g:spacevim_guifont)
2017-04-06 20:44:14 +08:00
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
2016-12-26 21:11:19 +08:00
endif
2017-03-06 23:26:26 +08:00
" vim:set et sw=2: