jeanguyomarch / eovim

The Enlightened Neovim
https://github.com/jeanguyomarch/eovim/wiki
MIT License
193 stars 3 forks source link

font: overhaul! #45

Closed jeanguyomarch closed 4 years ago

jeanguyomarch commented 4 years ago

The font panel is gone... at last... Instead the 'set guifont=' thing has been implemented.

Eovim supports THIS format: Fontname:Fontsize. For example, the command below sets the font "Consolas" with size 14: set guifont=Consolas:14

TL;DR; Do this to set your font (put this in your init.nvim):

function! GuiSetup()
  set guifont=Fira\ Code:13
endfunction

augroup Eovim
   autocmd!
   autocmd User EovimReady call GuiSetup()
augroup END