diff --git a/README.md b/README.md index 66673a3c..4de687e4 100644 --- a/README.md +++ b/README.md @@ -28,6 +28,16 @@ there are a couple configuration values available: * `g:airline_theme` change the theme, currently only `default` is available * `g:airline_powerline_fonts` enable/disable usage of patched powerline font symbols +# demo + +## regular font + +![img](regular.png) + +## powerline font + +![img](powerline.png) + # contributions contributions and pull requests are welcome. diff --git a/autoload/airline/themes/default.vim b/autoload/airline/themes/default.vim index 70081d38..bb24d5ad 100644 --- a/autoload/airline/themes/default.vim +++ b/autoload/airline/themes/default.vim @@ -21,6 +21,6 @@ let g:airline#themes#default#visual = { \ 'mode': [ '#000000' , '#ffaf00' , 232 , 214 , 'bold' ] , \ 'mode_seperator': [ '#ffaf00' , '#ff5f00' , 214 , 202 , 'bold' ] , \ 'info': [ '#000000' , '#ff5f00' , 232 , 202 , '' ] , - \ 'info_seperator': [ '#000000' , '#5f0000' , 202 , 52 , 'bold' ] , + \ 'info_seperator': [ '#ff5f00' , '#5f0000' , 202 , 52 , 'bold' ] , \ 'statusline': [ '#ffffff' , '#5f0000' , 15 , 52 , '' ] , \ } diff --git a/powerline.png b/powerline.png new file mode 100644 index 00000000..9f91971e Binary files /dev/null and b/powerline.png differ diff --git a/regular.png b/regular.png new file mode 100644 index 00000000..5441984a Binary files /dev/null and b/regular.png differ