diff --git a/README.md b/README.md index 7721db0..f68cfdf 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,13 @@ To integrate *all* dotfiles in this repo: * [ ] shell config files ####License -These files are licensed under the [WTFPL](http://www.wtfpl.net/), the full +Droid Monospace font licensed under the [Apache License, Version +2.0](https://www.apache.org/licenses/LICENSE-2.0.html). + +Dotbot is (c) Anish Athalye, and licensed under the [MIT +License](https://github.com/anishathalye/dotbot/blob/master/LICENSE.md). + +All other files are licensed under the [WTFPL](http://www.wtfpl.net/), the full license text of which can be found below. > **DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE** diff --git a/install.conf.yaml b/install.conf.yaml index 03ae374..907bb37 100644 --- a/install.conf.yaml +++ b/install.conf.yaml @@ -4,8 +4,10 @@ ~/.dotfiles: '' ~/.vim: vim/vim/ ~/.vimrc: vim/vimrc + ~/.fonts: vim/fonts/ ~/.gitconfig: git/gitconfig ~/.gitignore: git/gitignore - shell: - [git submodule update --init --recursive, Installing submodules] + - [fc-cache -f ~/.fonts, Resetting font cache] diff --git a/vim/README.md b/vim/README.md index 9e8e2a3..45e4c96 100644 --- a/vim/README.md +++ b/vim/README.md @@ -16,10 +16,13 @@ Additionally, I have several extensions, as submodules, in .vim/bundle: browser. * and [Pathogen](https://github.com/tpope/vim-pathogen) to do the hard work. +###Font +I prefer using the Droid Monospace font for powerline, which is bundled here for +convenience. The font is licensed under the Apache License, Version 2.0. + ####To-Do * [ ] Customize Airline more. * [ ] Consider adding [gist-vim](https://github.com/mattn/gist-vim) due to prevalence of Gist at work * [ ] Consider adding [vim-notes](https://github.com/xolox/vim-notes) and/or [vimwiki](https://github.com/vimwiki/vimwiki) for notes - diff --git a/vim/fonts/Droid Sans Mono Dotted for Powerline.ttf b/vim/fonts/Droid Sans Mono Dotted for Powerline.ttf new file mode 100644 index 0000000..d486107 Binary files /dev/null and b/vim/fonts/Droid Sans Mono Dotted for Powerline.ttf differ diff --git a/vim/vimrc b/vim/vimrc index 105d814..4c77c8b 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -15,6 +15,10 @@ set showcmd runtime bundle/vim-pathogen/autoload/pathogen.vim execute pathogen#infect() +" Airline configuration +set laststatus=2 +let g:airline_powerline_fonts = 1 + " Necessary for Syntax hilighting syntax on filetype plugin indent on