Skip to content

Commit

Permalink
[vim] configure airline font better...
Browse files Browse the repository at this point in the history
* airline repo has moved
* should have added powerline font declaration
* 'tomorrow' airline theme is much closer to bullettrain/maglev (though
  don't go down the rabbithole of base16 themese for now)
  • Loading branch information
tonywoode committed Aug 24, 2020
1 parent eee2201 commit bed6713
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ call plug#begin('~/.vim/plugged') "with vundle this used to be ~/vim/bundle'
Plug 'junegunn/vim-plug' "If you need Vim help for vim-plug itself (e.g. :help plug-options), register vim-plug as a plugin.

" appearance
Plug 'bling/vim-airline'
Plug 'vim-airline/vim-airline'
Plug 'christoomey/vim-tmux-navigator' "When combined with a set of tmux key bindings, navigate seamlessly between vim and tmux splits using a consistent set of hotkeys.
Plug 'micha/vim-colors-solarized'
Plug 'vim-airline/vim-airline-themes'
Expand Down Expand Up @@ -170,9 +170,8 @@ let g:dash_map = { 'javascript' : 'ramda' }
" airline options https://github.com/vim-airline/vim-airline
" by default with 'laststatus' the statusline won't appear until a split is created. Make it appear always
set laststatus=2
let g:airline_theme='solarized'
" for DARK solarized, this extra step is needed
let g:airline_solarized_bg='dark'
let g:airline_powerline_fonts = 1
let g:airline_theme='tomorrow'
" Enable the list of buffers
let g:airline#extensions#tabline#enabled = 1
" Show just the filename TODO: work out what the other constituents mean
Expand Down

0 comments on commit bed6713

Please sign in to comment.