forked from SpaceVim/SpaceVim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ginit.vim
29 lines (24 loc) · 785 Bytes
/
ginit.vim
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
"=============================================================================
" ginit.vim --- Entry file for neovim-qt
" Copyright (c) 2016-2022 Wang Shidong & Contributors
" Author: Wang Shidong < [email protected] >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
if exists('g:GuiLoaded')
if exists('g:spacevim_guifont') && !empty(g:spacevim_guifont)
exe 'Guifont! ' . g:spacevim_guifont
else
exe 'Guifont! SauceCodePro Nerd Font Mono:h11:cANSI:qDRAFT'
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: