powerline / fonts

Patched fonts for Powerline users.
25.63k stars 3.19k forks source link

Glyphs in powerline are larger than normal. #95

Open adamvonbaron opened 9 years ago

adamvonbaron commented 9 years ago

I asked this question in the powerline/powerline repository, however I was told to bring it up here. This is the problem I have: font issue The special characters seem larger, and maybe lowered (but probably not). Here is my .vimrc:

"Vundle stuff
set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'gmarik/Vundle.vim'
set rtp+=/home/adam/code/cvs/git/powerline/powerline/bindings/vim
call vundle#end()
filetype plugin indent on
" When started as "evim", evim.vim will already have done these settings.
if v:progname =~? "evim"
  finish
endif
set backspace=indent,eol,start

if has("vms")
  set nobackup      " do not keep a backup file, use versions instead
else
  set backup        " keep a backup file (restore to previous version)
  set undofile      " keep an undo file (undo changes after closing)
endif
set history=50      " keep 50 lines of command line history
set ruler       " show the cursor position all the time
set showcmd     " display incomplete commands
set incsearch       " do incremental searching
map Q gq
inoremap <C-U> <C-G>u<C-U>
if has('mouse')
  set mouse=a
endif
if &t_Co > 2 || has("gui_running")
  syntax on
  set hlsearch
endif
if has("autocmd")
  augroup vimrcEx
  au!
  autocmd FileType text setlocal textwidth=78
  autocmd BufReadPost *
    \ if line("'\"") > 1 && line("'\"") <= line("$") |
    \   exe "normal! g`\"" |
    \ endif

  augroup END

else

  set autoindent        " always set autoindenting on

endif " has("autocmd")
if !exists(":DiffOrig")
  command DiffOrig vert new | set bt=nofile | r ++edit # | 0d_ | diffthis
          \ | wincmd p | diffthis
endif
set nu
set cursorline
colorscheme jellybeans
set rtp+=/home/adam/code/cvs/git/powerline/powerline/bindings/vim
set laststatus=2
set t_Co=256
set guifont=Anonymice\ Powerline\ 15
set showtabline=2
set noshowmode

I am running OpenBSD-current, use zsh, and the st terminal emulator. I'll supply any other info that is needed. Thanks

dawikur commented 9 years ago

I had similar problem with font FiraMono, eventually ended with switching to DoidSansMono. However it would be good to fix this.