Hacker News new | past | comments | ask | show | jobs | submit login
Adobe's Source Code Pro Font (opensourcehacker.com)
166 points by pykello on Oct 7, 2012 | hide | past | favorite | 115 comments



I would be remiss not to point out Inconsolata. It's perfect (IMHO) for code, terminals, and email.

http://levien.com/type/myfonts/inconsolata.html


I'm a huge fan of Inconsolata. There's a variant called Inconsolata-g that's even better: http://leonardo-m.livejournal.com/77079.html


Thanks for that! This font looks gorgeous in Terminal. I was just struggling 2 days ago to find a better font because I was fed up with the system defaults.


me 2.

Been using it in the recent years.


I love Inconsolata as well -- it's the only font on OS X that comes close to Consolas on Windows. For some reason though IntelliJ cannot render it well at all, so I've resorted to using Droid Sans Mono [1], which is awesome as well.

[1]: http://www.google.com/webfonts/specimen/Droid+Sans+Mono


It's good, but I'd say it's short of perfect due to the similarity of the "1" [one] and "l" [lower-case ell]. Inconsolata-g fixed this, but in a strange way (taking the lower serif off the "1" [one]).


The 1 in Inconsolata does not have the serif either, and it hasn't for a while I think: http://levien.com/type/myfonts/incoshow.png


Yes, you're right. I was looking at an old version. That change definitely improves the font, but it's still an odd solution, IMHO.


the top serif is also angled downward on the 'one'.

here's a preview of Inconsolata-g at high res (~100kB)


Where?


For those who miss Greek characters, here's an Inconsolata variant that has them as well: http://www.cosmix.org/software/


The big trouble with Inconsolata for me is the lack of a bold weight. This means it doesn't work in emacs if you use bold with your font lock mode.


Exactly, I use it in all my editors and iTerm too


I've recently switched to coding in a proportional width font (right now I'm using Verdana) and I'm never going back. I've yet to be bothered by things not lining up perfectly like things can in fixed width fonts, and overall my code feels more readable and easy on the eyes. I recommend giving it a try.


What sort of code are you writing? What languages are you using?


While I'm not the parent, I can comment on this too.

I program in Python, C, C++ and Java. In all these languages I prefer a proportional font. However I had to stop, mainly because the editors I want to use (Sublime text 2 at the moment) don't support proportional fonts.


Programming in Python, where whitespace is syntactically significant, with a proportional font, seems to be volunteering for an unnecessary burden. Reasonable people may differ.

The only mitigating factor would be that the spaces at the left margin all (presumably) have the same width.


Another proportional font using python programmer here. All significant white space is in the left margin and all has the same width, so not a problem at all.


And those are the only spaces that are significant in Python. Indentation works fine in proportional fonts, just like it does in monospaced fonts. The only thing that doesn't work is columnar alignment after the indentation, and that wouldn't be significant in Python anyway.


Proportional fonts seem to work for me in ST2 (http://i.imgur.com/ZLZWP.png) I just put this into the config:

    "font_face": "Verdana"
Though I may be missing something.


You're not missing anything. I'm using Georgia in ST2 via the same font_face setting you're using. Works great!


No, you aren't. I tried something like that in the past and it didn't seem to work. No idea why now!


In fact, I'm pretty sure if you put an invalid font name in you get a default proportional font.


Lately I've been writing a lot of ruby on rails


Second Verdana. I use it on both Mac and Windows for all languages. It looks and reads better that any of the fixed fonts I've tried. In the first couple of days after I switched it felt a bit weird, but then that feeling went away. I suspect that was due to the fact that I was simply used to fixed fonts and not that there was anything wrong with proportional fonts.


I also use proportional fonts when programming, since reasonably looking proportional and antialiased fonts appeared on Windows and X.

Recent example: http://www.michielovertoom.com/pictures/kwrite-textanalyse.p...


I would consider trying proportional width fonts, but I work on a fairly large team that all touches a lot of the same code. Having bunch o comments not line up may not bother me, but it would annoy others on the team.


Wow! I've had so many programmers react with shock when I tell them I use proportional fonts, that sometimes I think I'm the only one. I'm glad to hear your comments and the others here.

I really enjoy reading text in proportional fonts much more than monospaced. That's true for program code as much as any other text.

Like you, it doesn't bother me to lose vertical alignment. The only vertical alignment that matters to me in code is the indentation, and that works fine in proportional fonts. (The one exception being that the popular two-space indents are really lousy in a proportional font. So I prefer tabs, or if spaces are a requirement, four-space indents.)

In fact, some time before I started using proportional fonts, I'd already changed my coding style to avoid vertical alignment other than the left margin. I used to write code something like this:

  function someFunction(aParam,                   // This is the the main thing
                        anotherParam,             // This is another thing
                        aParamWithALongerName) {  // Remind me what this is for
      firstStep();        // Here is a description
      secondStep();       // of these three statements
      thirdStepSortOf();  // that go together
  }
That kind of code is the very reason for coding in monospaced fonts, but why? It is a pain to maintain and keep the spacing right, and in this (fairly realistic) example I find it extremely unhelpful to have all that whitespace separating "aParam" with its comment.

Instead, about ten years ago, I switched to a style more like this:

  function someFunction(
      aParam,  // This is the the main thing
      anotherParam,  // This is another thing
      aParamWithALongerName  // Remind me what this is for
  ) {
      // Here is a description of these three
      // statements that go together
      firstStep();
      secondStep();
      thirdStepSortOf();
  }
Now it may not be as "pretty" to have those comments on the parameters not all lined up as they were before, but it's a heck of a lot easier to maintain, and to my eyes it's easier to read too. The comments about the parameters are not related to each other, they are related to the parameter that each one applies to. With this style I can read:

      aParam,  // This is the the main thing
as pretty much a single unit, where the excessive whitespace in my previous style made it hard to match up each parameter with its comment.

Having made this change, some time later I discovered that the version of Visual Studio I was using at the time supported proportional fonts, gave it a whirl, and like you, found I really liked it.

It is true that when I read other people's code who've used columnar alignment, the alignment doesn't work any more. But for the most part that just doesn't bother me. In the few cases where the alignment really makes a difference, I just switch to a monospaced font to read that file.

My favorite editor, Komodo IDE (or the free Komodo Edit), does a marvelous job of handling this. Like many editors, you can set up a customized theme of fonts and colors, but unlike any other editor I know of, each theme includes separate selections for a proportional font and a monospaced font. For some reason they don't provide a keyboard shortcut by default to switch between them, but I mapped Alt+O (on Windows) which is unused otherwise. I remember it by thinking "prOpOrtiOnal" and "mOnOspaced". :-) So I can switch between my favorite proportional and monospaced fonts easily, and it also remembers that setting for each file I've edited.

UltraEdit and UEStudio (Windows only) are not bad here either. They don't have an explicit way to select proportional vs. monospaced, but if you press Alt+C to go into column selection mode it switches to a monospaced font while in that mode. So that's a way to view a monospaced file. I wish more editors had this kind of flexibility.


> That kind of code is the very reason for coding in monospaced fonts, but why?

Aligning crap like that is one of the indicators I use to tell if someone is an inexperienced coder. After you write enough LOC, you eventually realize that lining things up is a waste of time. You're inevitably going to insert a line long enough to screw up your alignment, and now you'll have to bungle your diff.


I've tried proportional fonts and gave up as the programming languages tend to emphasize punctuation and put crucial meaning in it, but in proportional fonts the punctuation is a second-class citizen, and this is reasonable for natural languages, but is not good for programming languages.


Could you give an example or two of program code where a proportional font made the punctuation hard to read or stand out less? I'm curious because I've coded in proportional fonts for ten years and haven't found that to be the case myself - with a couple of possible exceptions.

One is names_with_underscores. In a monospaced font, the underscore is the same width as every other character. In a proportional font, the underscore is one of the widest of characters, and much wider than a space.

For example, in the font I'm coding in right now, an underscore is 13 pixels wide, a parenthesis is 8 pixels, and a space is only 5 pixels!

So what happens is that the underscore in a way gives more visual separation in an expression than spaces or other punctuation.

  var foo_bar = some_function(one_param, another_param);
To some degree, my eyes group that code this way:

var foo bar = some function(one param, another param);

My solution for this is simple: don't use names_with_underscores (except when language conventions require it, such as in Ruby), and do add spaces inside the parentheses:

  var fooBar = someFunction( oneParam, anotherParam );
Why do the spaces go inside the parentheses and not outside? Well, you need a space in there somewhere, and this just doesn't work for me:

  var fooBar = someFunction (oneParam, anotherParam);
Nor this (with no space at all):

  var fooBar = someFunction(oneParam, anotherParam);
To me, the space belongs at the same place where I might put a line break if I had a too-long line. I would never break lines like this:

  var fooBar = someFunction
      (oneParam,
       anotherParam);
or like this:

  var fooBar = someFunction(oneParam,
      anotherParam);
But I do break lines like this:

  var fooBar = someFunction(
      oneParam,
      anotherParam
  );
This way the spacing goes in the same place regardless of whether it's a space or a linebreak.


I tried to get down with Source Code Pro, but it's such a radical departure from the popular monospaced fonts like Consolas, Inconsolata, Menlo, Monaco (classic!), etc... that I couldn't do it =(

It's interesting how much of your productivity comes from the subtle/indirect recognition of things. Changing something as trivial your color scheme or font can take a good chunk of time for adjustment.

I'm a huge fan of Ubuntu's monospaced font and use it on my Mac with Sublime.

http://wsld.me/JzYm (Ubuntu Mono, 16pt)


+1 for Ubuntu Mono. IMO it looks better than Inconsolata.


Am I the only one who uses DejaVu Sans Mono?


Nope, DejaVu Sans Mono is my preferred monospaced font too.


I've never understood why people code on dark backgrounds with such thick, fuzzy fonts. I find it extremely hard to read and have instead grown used to coding on an off-white background. Fonts are just rendered much thinner in a dark color on a light background (or at least, they seem to be). There's more space between legs and inside the o's in the letters. I find it much easier to read.

I've spent many hours trying to figure out how to convince Vim and/or OS X to lighten up on their font rendering. For some reason the only place I've been able to pull this off is Drracket which I just use for a class, and which has an option to do it. I've never been able to pull it off in my standard coding environment. I can't understand why that option isn't available anywhere else, or on an operating system level.

This is Monaco 12pt in Drracket and Vim, with that Drracket font smoothing option at the bottom: http://i.imgur.com/Va0ZN.png

Is there a good reason there's such little control over font rendering, at least on Mac?


OSX font rendering is optimized for high ppi displays (128+ ppi). If you try to look at screenshots of OSX font rendering on low-ppi displays (i.e. typical Windows laptop with 15" display at 1366 x 768) it's going to look incredibly fuzzy.

On the other hand, ClearType is optimized for low-ppi displays. If you try to view text rendered with ClearType on a high ppi display (128+ ppi) it will look incredibly thin because ClearType attempts to force straight font lines into a single row or column of pixels which is incredibly thin at such a high ppi. That's the very thing that makes ClearType fonts look much crisper on very low ppi displays.

tl;dr OSX font rendering is much more readable on 128+ (or even 220) ppi displays.


Is this true? Not even the Thunderbolt Display is 128+


I think this comes down to personal preference. I am on a 24 inch screen with 1080 lines and I still prefer reading text in OS X to Windows on it. On my shabby laptop, not so much.


> why people code on dark backgrounds

I do it mostly because staring at white background all day burns into my retinas.

> I've spent many hours trying to figure out how to convince Vim and/or OS X to lighten up on their font rendering

There was a system-wide anti-aliasing strength setting for OS X.

    defaults -currentHost write -globalDomain AppleFontSmoothing -int 2
I believe it's 0 to 3 but I can't check right now.


You are correct. The Source Code Pro light variant looks less fuzzy than Source Code Pro (normal). OSX does very fuzzy fonts by default. I updated the blog post to reflect that you should consider the light variant first on OSX.

Also when switching to the retina display the fuzziness goes 100% away.


Cool, thanks. Wasn't aware of the light variant.

Yeah, I'm looking forward to my first retina laptop.


I find off-white a little easier to read, but the sheer amount of light emanating from a large screen anywhere near white irritates my eyes more so than the strain of reading slightly fuzzy fonts.


"Please note that Source Code Pro comes with varying lightness degrees (I think there was 5 of them)." <- From the comments on this article; might be useful.


>I've never understood why people code on dark backgrounds with such thick, fuzzy fonts. I find it extremely hard to read and have instead grown used to coding on an off-white background.

Because we (I) find them extremely easy to read. I can't stand white or off-white backgrounds.


To install on Linux use the OTF files from https://github.com/downloads/adobe/Source-Code-Pro/SourceCod... and put them in /usr/share/fonts/opentype

I still prefer Ubuntu Mono though


On most distros third-party fonts can be installed locally in ~/.fonts/


Since my Favorite Terminal of All Time is the IBM 3278, I cannot possibly resist mentioning the font I built upon x3270's bitmap:

https://github.com/rbanffy/3270font

Yesterday, I moved all my terminals to the narrow version.


Are there screenshots available?


Now there is:

https://raw.github.com/wiki/rbanffy/3270font/emacs.png

edit: corrected URL and added it to the README file.


Here is another nice comparison of 24 monospace fonts in one picture: http://hostpicturefree.com/images/prograpup.png


Rendered on a mac by the looks of it.


None-one's mentioned it so I want to point out Anonymous Pro, pretty much the first thing I install on every dev machine.

http://www.ms-studio.com/FontSales/anonymouspro.html


After years of using Terminus on every single machine, I'm now switching to Anonymous Pro, and I'm liking it very much so far... Maybe I'll give Source Code Pro a try though, and see how it compares to them :)


Yep.. Anonymous Pro is also my choice. Also i switched to Source Code for now to test :) Both are good anyway..


I pulled Source Code Pro out of brackets a few weeks ago and loved it in Sublime, VS, and ConEMU on Windows and iTerm2 on the Mac. Then someone pointed me at Envy Code R [1]...

I find it much more pleasing with the benefit of great differentiation between 0 O etc...

http://damieng.com/blog/2008/05/26/envy-code-r-preview-7-cod...


I'm switching from Consolas to Source Code Pro Font!This font works in Emacs on Mac OS X!

Let the fixed width font war begin. Apple Vs. Microsoft vs. Adobe.


Yes, it looks really great in Emacs http://imgur.com/7rBbP I just find the black font a bit too heavy, but everything else is fine.


At the risk of destroying your productivity for the day, you can probably fix that annoying line over your line numbers (that is, http://imgur.com/GhaNq) by messing with your fringe-mode variable. I think I remember its presence having something to do with a conflict between fringe-mode and linum-format.


Thanks ! I've been searching a long time for a fix for this. I switched linum-format to " %d " and this is clearly better.


Would you mind sharing the exact settings you're using in your .emacs? I'm struggling to find a happy medium in terms of weight, height, etc.


This thread could be social engineering to get someone to show some code in their editor which is 'secret sauce' to the project. :)


Can I ask what color theme you're using there?


Sure. It's the "wombat" theme included by default with Emacs 24.


That lowercase i is unbearable.


I like it, but it's too wide. My top font choice is PragmataPro:

http://www.fsd.it/fonts/pragmatapro.htm

Some sample screenshots from OS X:

http://i.imgur.com/oxhSg.png (white background)

http://i.imgur.com/M0ZJz.png (black background)


PragmataPro really is a beautiful font. At first I was concerned that the larger line-height was a poor tradeoff for the decreased width, but it's so much more readable at lower sizes than e.g. DejaVu (my prior font of choice) that I've actually gained rows on my screen without sacrificing readability.

My only remaining concern is that the hypen isn't vertically centered with many of the other symbols, making -= and -> look awkward.


The hyphen problem is fixed in the most recent version!

    CHANGES FROM 0.8 TO 0.81
    edited by Fabrizio Schiavi 2012-06

      * dashrockets
        ->
        <-
        <=
        =========> 0%
        >=
        +=
        -=
        *= 
        +--------+--------+--------+
        are horizontally aligned 
  
      * | ¦ "bar" and "brokenbar" are now designed to be overlapped between two lines of text
        | ¦ (useful for iTerm2, tmux 1.6., Terminal.app and others)
  
      * horizontal strokes of the letter Nun (U+05E0) is a bit shorter, 
        to help make it more distinct from Kaph (U+05DB)
  
      * Italic weight is TrueType handhinted
  
      * Bold Italic weight is TrueType handhinted
  
      * added an entire Unicode block: 
        2100-214F Letterlike Symbols to the Regular weight
  
      * added these letters from the block 
        1D400-1D7FF Mathematical Alphanumeric Symbols 
        to the Regular weight:
   
    Amathdoublestruck, Bmathdoublestruck, Dmathdoublestruck, 
    Emathdoublestruck, Fmathdoublestruck, Gmathdoublestruck, 
    Imathdoublestruck, Jmathdoublestruck, Kmathdoublestruck, 
    Lmathdoublestruck, Mmathdoublestruck, Omathdoublestruck, 
    bmathdoublestruck, dmathdoublestruck, emathdoublestruck, 
    imathdoublestruck, jmathdoublestruck, Bmathboldfraktur, 
    Cmathboldfraktur, Dmathboldfraktur, Emathboldfraktur, Fmathboldfraktur, 
    Gmathboldfraktur, Hmathboldfraktur, Imathboldfraktur


Wow, I must have completely glossed over the notification email. Thanks a million!


I prefer PragmataPro too, but with antialiasing off in Sublime Text. I find it very clean: http://d.pr/i/8uP8


Seems to be the perfect font for use without antialiasing. Reminds me of the text mode on the old x86s.


Looks good. However, nothing's going to stop me using TheSansMono[1]. I've discovered this font a while ago and have never looked back. I like the look and all the characters that might look similar have been worked on in order to be easily distiguishable, like the capital O and the number 0, the lowercase l and 1, and so on. Since it's my terminal font it's really the main font on my system and so far it's worked for everything.

[1] http://www.lucasfonts.com/fonts/thesansmono/


With all respect, I consider Terminus better, among other things because it is more compact and more readable


I've been using Terminus for years. I've tried several times to get into "pretty" anti-aliased fonts, but nothing beats hard, sharp edges for a long day of programming. I specifically use Terminus with 16 pxlsize on a 15.6" 1920x1080 screen and find that delightful.

Coding with dark text on a white background is much easier on the eyes, too, unless you have a screen that won't let you turn down the brightness.

Pro tip: hold up a white sheet of paper in your well-lit work environment. Adjust your screen brightness to match the brightness of the piece of paper. Your screen should not be brighter than your work environment.

Super pro tip: work outside. Get a professional laptop with a matte screen, one of those lightweight "antigravity" chairs, and find a nice place to work outdoors. A 12x24" piece of wood makes a good lap desk if you need to use a mouse and fits well over the armrests of all of the outdoor chairs I have worked in.


I've been using Terminus for about six months and absolutely love it. Here are some screenshots from the homepage: http://terminus-font.sourceforge.net/shots.html


I always come back to Terminus. Been using it for god knows how many years now.


SourceCodePro is too wide or has too much horizontal spacing for me.

DejaVu Sans Mono can be better in some environments http://dejavu-fonts.org/wiki/

I also discovered I like the new Ubuntu Mono http://font.ubuntu.com/

except it has too much vertical spacing, but I hope to find a way to easily edit that someday


I used the Source family briefly. It's quite nice, although there was something I didn't quite like about it. I replaced it with the Nimbus L family, which is very similar but seems easier to read to my eyes. (on X11, anyway. doesn't look quite as good on OS X for whatever reason).


I added some notes to the blog post about customizing horizontal and vertical spacing of the text. Advanced editors and terminals usually have a setting where you can fiddle this for your own comfort.


> SourceCodePro is too wide or has too much horizontal spacing for me.

I think so, too. At least compared to Consolas which I use and prefer.


The horizontal spacing of Consolas and Source Code Pro are almost identical. The vertical spacing of SCP is much greater, but you're more likely to be able to adjust that in your editor anyway.


I'm also a Consolas user. For me, Inconsolata and SourceCodePro have the same issue: the horizontal placement of @ drives me nuts.


Yeah, I tried this and ended up going back to DejaVu Sans in my Linux dev environment. Source Code Pro looked fuzzy to me.


While not for me (I love Consolas too much), it's great that we're starting to see some useful fonts under permissive licenses (and from big names like Adobe and Google). I remember back in the day when there were only a handful of fonts that had a license that a) allowed redistribution and b) weren't GPLed.


Worth noting the character set is lacking compared to other fonts such as Consolas or Ascender Uni.

There's too much attention for 0 vs O's and too little for unicode coverage. Personally, I never understood the whole character differentiation thing when most modern editors/IDEs feature syntax highlighting and checking.


Ive been using the VGA font since I started coding borland IDEs in DOS. I just cant find any other font that seems as easy to read. There is even a version of it with lots of unicode characters added.

http://www.inp.nsk.su/~bolkhov/files/fonts/univga/index.html

When I got a retina macbook the resolution meant each pixel of the font was 4 on the display instead of 1 so I tried and failed to find a substitute again. I ended up using fontforge to double the resolution of the font and smoothed it out by hand with some extra pixels. I like it even more now.


...would love to see a comparison like this http://1overn.com/2011/01/31/iterating-on-font-pair-comparis... Consolasa vs Adobe Source Code Pro and also with Inconsolata (though for now I'm using Adobe's font simply for the fact that in sublime text 2 on xubuntu lts both Consolas and Inconsolata render as white squares instead of letters - couldn't figure out it's some weird encoding issue or dog knows what, as in other apps it works great)


I installed the ttf version in Arch Linux and it looks awful. I guess it's freetype2's fault.

Update: I bit the bullet and installed the Infinality patchset. The result is astonishing...


http://goput.it/5gi.png Was going to recommend freetype- and fontconfig-infinality, seems like i was too late.


Since this is just turning into the "name your favorite mono-font" thread, I prefer Bitstream Vera Sans Mono Roman: http://www.fontsquirrel.com/fonts/Bitstream-Vera-Sans-Mono (My old favorite used to be Courier New Bold.)


It's reminiscent of DejaVu Sans Mono, the Free coding font I've been using and liking lately.


A bit wide for my tastes in MacVim. My font of choice lately has been PT Mono. http://www.paratype.com/public/ I highly recommend giving it a try!


I love Source Code Pro - I keep my editor font size quite large (17-18px depending on the font) and the light variant of Source Code Pro is perfect for the large size.


IMO, using light colored type on a dark background is relieves more eyestrain than any particular font could.


heh. i tend to lump font geeks in with grammar nazis as people who get worked up over the littlest things. while i never understood the reasons why people seem to go to war over fonts - witness the wrath against comic sans - i do appreciate a pretty font and the links in this discussion.

serifs unite!


on my (now quite old) 13" macbook pro, I have to dial down the font size on my terminal to fit enough info on the screen.

I'd got used to Monaco, but this makes everything so much clearer. I've been using it since this article came up, not yet been tempted to switch back.


I really like using Tamsyn, a bitmap font, for my Xterms. I just like the way it looks.


I'm a huge fan of Panic Sans. Ripped it out of Coda and use it in Vim and my terminals.


I tried it and it looks all blurred in my text editor.


did you install otf or ttf version? otf rendered worse in my case than ttf.


Where in the heck do you download this? I can go to github but I have to compile it, which needs "makeotf", and I don't have that on OS X. At least not right now.


The section titled "Pre-built font binaries" in the README links to the download location, but it's also the standard download location on github (right-hand side, below the clone URL and above the last commit box): https://github.com/adobe/Source-Code-Pro/downloads


Mucking with console/IDE fonts is the ultimate waste of time. Please stop doing it. It won't enhance your productivity. You have been warned.


thank you - it made quite a difference on high density thinkpad display.


I've been using this in elementary OS. Between that and using agnoster in zsh, I'm in nerd heaven.

http://i.imgur.com/FoFUg.png

Actually, between elementary OS's font rendering settings, great terminal support and unix/linux tools, I'm spending basically every second on my MBA inside my eOS VM.


Your prompt is awesome, mind sharing? And actually you have some interesting config going on with Sublime. The dots next to the files? Is that a source control flag or something?

Re-read and realized you mention the theme, link for others who are curious: https://gist.github.com/3712874


zsh + oh-my-zsh + 'agnoster' theme (agnoster is now included in oh-my-zsh).

The dots are unsaved files (usually they're files that are open that I've renamed/deleted and thus it marks them as unsaved).

The ST2 theme is "Aqua/Monokai Aqua"

(EDIT: Note, that prompt looks AWFUL in Terminal.app/iTerm2.app. It can be made to look nice if you adjust the palette color settings for your emulator, fortunately, this screenshot is with Gnome-terminal's Tango palette.).


Awesome! I use oh-my-zsh so i'll give her a spin.


That feature, where you have an overview of the whole textfile in the rightmost column of the left window, what is it called? And is it available for emacs?


It's called minimap. http://www.emacswiki.org/emacs/MiniMap might be helpful.


Is it pantheon terminal? How did you change the font? I installed oh-my-zsh, but agnoster did not work well.


next step: Vim and tmux, I promise you won't look back :)


I've been there before, Sublime has much better syntax highlighting (especially for Go).

I have a customized vim config and I give it a serious shot once a year. So far Sublime Text 2 still has me very, very happy.


Wow, Adobe. An open-sourced font. I cannot believe in such a miracle. I am truly amazed. One of the main proprietary capitalist freak companies decided to go opensource on what? - on fonts - one of the most closed and commercialized areas. Somebody has triggered some magic switch that turns the world into a slightly better place.

The font is not that good though. In Windows it is rendered too wide. Does not seem to be able to replace my current fav Segoe UI Mono that I find more readable.

But now it is a completely different story: we have the source codes! Let's go edit some fonts the way we like!


Terminus does the same thing:

http://terminus-font.sourceforge.net/

> Version 4.38 contains 879 characters, covers about 120 language sets and supports ISO8859-1/2/5/7/9/13/15/16, Paratype-PT154/PT254, KOI8-R/U/E/F, Esperanto, many IBM, Windows and Macintosh code pages, as well as the IBM VGA, vt100 and xterm pseudographic characters.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: