Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

no icons wit terminus Font #157

Closed
zakariaGatter opened this issue Jun 16, 2016 · 7 comments
Closed

no icons wit terminus Font #157

zakariaGatter opened this issue Jun 16, 2016 · 7 comments

Comments

@zakariaGatter
Copy link

I use Terminus Font On my xfce4-terminal with vim-airline
i use this configuration for vim-devicons but no icons

set guifont=Terminus\ 10                                                                      
set encoding=utf8

Can Any One Help Me

@ryanoasis
Copy link
Owner

@zakariaGatter Can you tell me where you downloaded it from?

It has to be a patched font unless you want to setup your own filetypes with only the glyphs available in your font.

It is not a Nerd Font, unless you patched it yourself? Even then the name will be modified with a postfix value of something like "Nerd Font Complete"

Terminus is still todo (#23, #86) officially in Nerd Fonts

@zakariaGatter
Copy link
Author

i Download it using Vundle.Vim
Plugin 'ryanoasis/vim-devicons
and i already install FontAwesome and font-powerline and its work fine with everything
i3Wm, Awesome Wm

@her
Copy link
Collaborator

her commented Jun 17, 2016

@zakariaGatter

So all is working fine?

If you're still having problems feel free to post your .vimrc and screenshots if possible.

@zakariaGatter
Copy link
Author

ok but i have a long .vimrc I'll post the important

synta on 
set background=dark
colorscheme ac
set nu
set history=1000
set showcmd
set showmode 
set backspace=indent,eol,start
set gcr=a:blinkon0
set visualbell
set autoread 
set laststatus=2
set shell=zsh
set t_Co=256
hi ColorColumn ctermbg=234 guibg=black
hi CursorLine cterm=NONE

"======= Swap File ========="
set noswapfile 
set nobackup
set nowb

"====== Search ========="
set incsearch 
set hlsearch 
set ignorecase 
set smartcase 

"===========Compelation =============="
set wildmode=list:longest
set wildmenu                    "enable ctrl-n and ctrl-p to scroll thru
set wildignore=*.o,*.obj,*~     "stuff to ignore when tab completing
set wildignore+=*vim/backups*
set wildignore+=*sass-cache*
set wildignore+=*DS_Store*
set wildignore+=vendor/rails/**
set wildignore+=vendor/cache/**
set wildignore+=*.gem
set wildignore+=log/**
set wildignore+=tmp/**
set wildignore+=*.png,*.jpg,*.gif

"===== Lines ========="
set nowrap
set linebreak 

"======= highlight current line ========="
au WinLeave * set nocursorline nocursorcolumn
au WinEnter * set cursorline cursorcolumn
set cursorline cursorcolumn

"=========== Tabs =========="
set autoindent
set smartindent 
set smarttab
set shiftwidth=4
set softtabstop=4
set tabstop=4
set expandtab

"==== Vundle ===="
set nocompatible              " be iMproved, required
filetype off                  " required

"====== set the runtime path to include Vundle and initialize ===="
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()

"====airline 
Plugin 'vim-airline/vim-airline'
Plugin 'vim-airline/vim-airline-themes'

"====Vim DevIcons
Plugin 'ryanoasis/vim-devicons'

call vundle#end()            " required
filetype plugin indent on    " require
""""""""""""""""""""""""""""""
"=== Vim DevIcons
set guifont=Terminus\ 10
set encoding=utf8

"==== air-line ===="
 let g:airline_powerline_fonts = 1
 let g:airline#extensions#tabline#enabled = 1
 let g:airline_theme="bubblegum"

 if !exists('g:airline_symbols')
     let g:airline_symbols = {}
     endif

     " unicode symbols
     let g:airline_left_sep = '▓▒░'
     let g:airline_left_sep = '▒'
     let g:airline_right_sep = '░▒▓'
     let g:airline_right_sep = '▒'
     let g:airline_symbols.linenr = '␊'
     let g:airline_symbols.linenr = '␤'
     let g:airline_symbols.linenr = '¶'
     let g:airline_symbols.branch = '⎇'
     let g:airline_symbols.paste = 'ρ'
     let g:airline_symbols.paste = 'Þ'
     let g:airline_symbols.paste = '∥'
     let g:airline_symbols.whitespace = 'Ξ'

     " airline symbols
     let g:airline_left_sep = ''
     let g:airline_left_alt_sep = ''
     let g:airline_right_sep = ''
     let g:airline_right_alt_sep = ''
     let g:airline_symbols.branch = ''
     let g:airline_symbols.readonly = ''
     let g:airline_symbols.linenr = ''

this my .vimrc on Airline and devicons plugins

I Use :

  • Xfce4-terminal 👍
  • Terminus Font 👍
  • FontAwesome 👍

All work fine

@zakariaGatter
Copy link
Author

finally i found a solution i was needed to install

nerd-fonts

im so sorry for disturb you guys

@her
Copy link
Collaborator

her commented Jun 18, 2016

@zakariaGatter no need to be sorry! I'm happy you've got it working 😊

Enjoy Devicons!

@her her closed this as completed Jun 18, 2016
@ryanoasis
Copy link
Owner

@zakariaGatter Glad you figured it out 😄

@her Thanks for following up 👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants