How to export the font configuration of Xcode to Sublime?

1

I like the font configuration of my Xcode. So, how to export the font configuration of Xcode to Sublime?

injoy

Posted 2013-07-27T06:41:30.277

Reputation: 165

@slhck thanks. BTW, is there a GUI font configuration for sublime? – injoy – 2013-07-27T18:25:37.730

Answers

1

There's no export option for this… you need to just set it in Sublime. Press Cmd, and here, in your Preferences.sublime-settings, add:

{
  "font_face": "Menlo",
  "font_size": 11.0
}

Menlo Regular, 11pt is what Xcode uses by default.

To my knowledge there is no GUI configuration for fonts in Sublime—actually, there's little GUI functionality with regard to these core aspects, apart from switching the color scheme.

slhck

Posted 2013-07-27T06:41:30.277

Reputation: 182 472