vote up 1 vote down star

I am trying to find an optimal font for gvim to program in C/C++.

I currently have the following in ~/.gvimrc and I don't like it:

if has("gui_gtk2")
    set guifont=MiscFixed\ 11
else
    set guifont=-misc-fixed-medium-r-normal--10-100-75-75-c-60-iso8859-1
endif
set columns=80 lines=50
set guioptions-=T "hide toolbar

"Try to load happy hacking teal colour scheme
"I copy this to ~/.vim/colors/hhteal.vim
silent! colorscheme hhteal
if exists("colors_name") == 0
    "Otherwise modify the defaults appropriately

    "background set to dark in .vimrc
    "So pick appropriate defaults.
    hi Normal     guifg=gray guibg=black
    hi Visual     gui=none guifg=black guibg=yellow

    "The following removes bold from all highlighting
    "as this is usually rendered badly for me. Note this
    "is not done in .vimrc because bold usually makes
    "the colour brighter on terminals and most terminals
    "allow one to keep the new colour while turning off
    "the actual bolding.

    " Steve Hall wrote this function for me on vim@vim.org
    " See :help attr-list for possible attrs to pass
    function! Highlight_remove_attr(attr)
        " save selection registers
        new
        silent! put

        " get current highlight configuration
        redir @x
        silent! highlight
        redir END
flag

Why include your whole .gvimrc when all you care about is the font? – Laurence Gonsalves Oct 8 at 19:17
you welcome to edit what you consider extraneous. I only left coloring stuff. – Andrei Oct 8 at 19:20
Are you asking about the color scheme as well, or just the font? If the latter, the "set guifont" line is more than enough. – Laurence Gonsalves Oct 8 at 19:21

7 Answers

vote up 7 vote down check

You can use :set guifont=* to bring up a font chooser dialog. Once you've chosen a font use :echo &guifont to see what to put in your .gvimrc. (remember to \-escape spaces)

Personally, I like Inconsolata. From my .gvimrc:

set guifont=Inconsolata\ 13
link|flag
+1 @Laurence G. Agh, I don't have Inconsolata. Another one you'd recommend? – Andrei Oct 8 at 19:26
I also like Andale. What OS/distro are you using? On Ubuntu you can apt-get install ttf-inconsolata. On other systems you can download it from levien.com/type/myfonts/… – Laurence Gonsalves Oct 8 at 19:30
You may also want to do some searches for "programming font". Here's a good list of some: hivelogic.com/articles/top-10-programming-fonts/… – Laurence Gonsalves Oct 8 at 19:31
By "Andale" I meant "Andale Mono". – Laurence Gonsalves Oct 8 at 19:32
I found the font: levien.com/type/myfonts/… where do I put this or how to install it? thx – Andrei Oct 8 at 19:48
show 4 more comments
vote up 1 vote down

I'm a big fan of Anonymous. I like to fit as much as I can on my screen, so my vimrc looks like:

set guifont=Anonymous:h8
link|flag
vote up 4 vote down

Is it possible to use Consolas font there? It is the best monosize font I've ever seen.

Ok, it is possible. Check screenshot below:

image

link|flag
+1 for Consolas - been using it for about 6 months now and I love it. – inkedmn Oct 9 at 13:35
vote up 0 vote down

I recommend the Neep font for all text-editing/console-mode activities:

Neep

You can also use a smaller version, but then boldface will not work well so it's not ideal for vim:

alt text

link|flag
vote up 0 vote down

Check out monofur - it's quite an unusual monospaced font. Other than that, I use Monaco.

link|flag
vote up 0 vote down

I prefer Courier New, its good..

my .vimrc includes this code snippet to change the font

if has("gui_running")  
    if has("gui_gtk2")  
    	set guifont=Courier\ New\ 10  
    elseif has("x11")  
    	set guifont=-*-courier-medium-r-normal-*-*-180-*-*-m-*-*  
    else  
    	set guifont=Courier_New:h10:cDEFAULT  
    endif  
endif
link|flag
vote up 0 vote down

There's a good comparison of a few possibilities here.

I use ProggyCleanSZ (the slashed-zero version), which is a bitmap font that only really looks any good in size 12 (although it's about the same size as a size 9-10 font). Very easy on the eyes though and easy to differentiate between 0 and O as well as 1, I and l.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.