Update vimrc and add font for powerline. Update readmes accordingly.
This commit is contained in:
parent
9c4c9145f0
commit
d54205d782
5 changed files with 17 additions and 2 deletions
|
@ -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**
|
||||
|
|
|
@ -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]
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
BIN
vim/fonts/Droid Sans Mono Dotted for Powerline.ttf
Normal file
BIN
vim/fonts/Droid Sans Mono Dotted for Powerline.ttf
Normal file
Binary file not shown.
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue