dotfiles/nvim/ginit.vim

13 lines
494 B
VimL

call rpcnotify(1, 'Gui', 'Font', 'Iosevka Curly Slab 8.4')
call rpcnotify(1, 'Gui', 'FontFeatures', 'XHS0,ss14,cv12=5,cv16=3,cv43=1,cv45=2,cv53=1,cv54=1,cv52=3,cv36=1,cv51=5,cv49=2')
if exists('g:GtkGuiLoaded')
call rpcnotify(1, 'Gui', 'Command', 'PreferDarkTheme', 'on')
endif
" Restore theme's background on GUI
if exists('g:colors_name') && g:colors_name == 'onedark'
let s:colors = onedark#GetColors()
call onedark#extend_highlight('Normal', {'bg': {'gui': s:colors.black.gui}})
endif