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

30 lines
784 B
VimL
Raw Normal View History

"=============================================================================
" ginit.vim --- Entry file for neovim-qt
2020-08-31 21:24:27 +08:00
" Copyright (c) 2016-2020 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.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
2020-05-09 22:21:33 +08:00
else
exe 'Guifont! SauceCodePro Nerd Font Mono:h11:cANSI:qDRAFT'
2017-04-06 20:44:14 +08:00
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: