comparison vim/vimrc @ 356:2060d92ccc2f

Use `hack` font if it's there.
author Ludovic Chabant <ludovic@chabant.com>
date Mon, 19 Dec 2016 20:05:33 -0800
parents 9580765366a4
children d8ae3de7de06
comparison
equal deleted inserted replaced
355:9e6333a505a9 356:2060d92ccc2f
191 " And now, for some system-dependent settings: 191 " And now, for some system-dependent settings:
192 " - font to use 192 " - font to use
193 if s:vim_platform == "windows" 193 if s:vim_platform == "windows"
194 set guifont=Consolas:h12 194 set guifont=Consolas:h12
195 else 195 else
196 set guifont=Monaco:h12 196 set guifont=Hack:h12,Monaco:h12
197 endif 197 endif
198 198
199 " Syntax highlighting. 199 " Syntax highlighting.
200 syntax on 200 syntax on
201 201