Mercurial > dotfiles
comparison vim/vimrc @ 442:decee05a5595
Weird, Neovim doesn't have `guifont`?
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Sun, 29 Apr 2018 22:54:31 -0700 |
parents | a3c6869085c1 |
children | 4ca0b1413199 |
comparison
equal
deleted
inserted
replaced
441:a3c6869085c1 | 442:decee05a5595 |
---|---|
183 " Column indicators. | 183 " Column indicators. |
184 set colorcolumn=72,79 | 184 set colorcolumn=72,79 |
185 | 185 |
186 " And now, for some system-dependent settings: | 186 " And now, for some system-dependent settings: |
187 " - font to use | 187 " - font to use |
188 if ludo#platform() == "windows" | 188 if !has('nvim') |
189 set guifont=InputMono:h10,Hack:h12,Consolas:h12 | 189 if ludo#platform() == "windows" |
190 else | 190 set guifont=InputMono:h11,Hack:h12,Consolas:h12 |
191 set guifont=InputMono:h10,Hack:h12,Monaco:h12 | 191 else |
192 set guifont=InputMono:h11,Hack:h12,Monaco:h12 | |
193 endif | |
192 endif | 194 endif |
193 | 195 |
194 " Syntax highlighting. | 196 " Syntax highlighting. |
195 syntax on | 197 syntax on |
196 | 198 |