Update vimrc and add font for powerline. Update readmes accordingly.

This commit is contained in:
Bill Niblock 2015-06-27 16:12:05 -04:00
parent 9c4c9145f0
commit d54205d782
5 changed files with 17 additions and 2 deletions

View file

@ -32,7 +32,13 @@ To integrate *all* dotfiles in this repo:
* [ ] shell config files * [ ] shell config files
####License ####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. license text of which can be found below.
> **DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE** > **DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE**

View file

@ -4,8 +4,10 @@
~/.dotfiles: '' ~/.dotfiles: ''
~/.vim: vim/vim/ ~/.vim: vim/vim/
~/.vimrc: vim/vimrc ~/.vimrc: vim/vimrc
~/.fonts: vim/fonts/
~/.gitconfig: git/gitconfig ~/.gitconfig: git/gitconfig
~/.gitignore: git/gitignore ~/.gitignore: git/gitignore
- shell: - shell:
- [git submodule update --init --recursive, Installing submodules] - [git submodule update --init --recursive, Installing submodules]
- [fc-cache -f ~/.fonts, Resetting font cache]

View file

@ -16,10 +16,13 @@ Additionally, I have several extensions, as submodules, in .vim/bundle:
browser. browser.
* and [Pathogen](https://github.com/tpope/vim-pathogen) to do the hard work. * 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 ####To-Do
* [ ] Customize Airline more. * [ ] Customize Airline more.
* [ ] Consider adding [gist-vim](https://github.com/mattn/gist-vim) due to * [ ] Consider adding [gist-vim](https://github.com/mattn/gist-vim) due to
prevalence of Gist at work prevalence of Gist at work
* [ ] Consider adding [vim-notes](https://github.com/xolox/vim-notes) and/or * [ ] Consider adding [vim-notes](https://github.com/xolox/vim-notes) and/or
[vimwiki](https://github.com/vimwiki/vimwiki) for notes [vimwiki](https://github.com/vimwiki/vimwiki) for notes

Binary file not shown.

View file

@ -15,6 +15,10 @@ set showcmd
runtime bundle/vim-pathogen/autoload/pathogen.vim runtime bundle/vim-pathogen/autoload/pathogen.vim
execute pathogen#infect() execute pathogen#infect()
" Airline configuration
set laststatus=2
let g:airline_powerline_fonts = 1
" Necessary for Syntax hilighting " Necessary for Syntax hilighting
syntax on syntax on
filetype plugin indent on filetype plugin indent on