General update

This commit is contained in:
Bill Niblock 2015-10-27 18:21:59 -04:00
parent 353099b8f0
commit 2086540df2
5 changed files with 11 additions and 21 deletions

View file

@ -24,17 +24,15 @@ To integrate *all* dotfiles in this repo:
> 3. ./install > 3. ./install
##Applications Configured ##Applications Configured
* Vim \[ vim/vim/ => ~/.vim \]\[ vim/vimrc => ~/.vimrc \]\[ vim/fonts/\* => ~/.fonts \] * Vim \[ vim/vim/ => ~/.vim \]\[ vim/vimrc => ~/.vimrc \]
* Git \[ git/gitconfig => ~/.gitconfig \]\[ git/gitignore => ~/.gitignore \] * Git \[ git/gitconfig => ~/.gitconfig \]\[ git/gitignore => ~/.gitignore \]
* Tmux \[ tmux/tmux.conf => ~/.tmux.conf \]
##To-Do ##To-Do
* [ ] irssi config files * [ ] irssi config files
* [ ] shell config files * [ ] shell config files
####Licenses #Licenses
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 Dotbot is (c) Anish Athalye, and licensed under the [MIT
License](https://github.com/anishathalye/dotbot/blob/master/LICENSE.md). License](https://github.com/anishathalye/dotbot/blob/master/LICENSE.md).

View file

@ -5,6 +5,11 @@ if [ -f /etc/bashrc ]; then
. /etc/bashrc . /etc/bashrc
fi fi
# Add Gems to path
if which ruby >/dev/null && which gem >/dev/null; then
PATH="$(ruby -rubygems -e 'puts Gem.user_dir')/bin:$PATH"
fi
# Uncomment the following line if you don't like systemctl's auto-paging feature: # Uncomment the following line if you don't like systemctl's auto-paging feature:
# export SYSTEMD_PAGER= # export SYSTEMD_PAGER=

View file

@ -4,17 +4,9 @@
~/.dotfiles: '' ~/.dotfiles: ''
~/.vim: vim/vim/ ~/.vim: vim/vim/
~/.vimrc: vim/vimrc ~/.vimrc: vim/vimrc
#~/.fonts/DroidSansMonoDottedPowerline.ttf:
# create: true
# path: vim/fonts/DroidFont.ttf
~/.gitconfig: git/gitconfig ~/.gitconfig: git/gitconfig
~/.gitignore: git/gitignore ~/.gitignore: git/gitignore
~/.tmux.conf: tmux/tmux.conf ~/.tmux.conf: tmux/tmux.conf
- shell: - shell:
- [git submodule update --init --recursive, Installing submodules] - [git submodule update --init --recursive, Installing submodules]
<<<<<<< HEAD
# - [fc-cache -f ~/.fonts, Resetting font cache]
=======
# - [fc-cache -f ~/.fonts, Resetting font cache]
>>>>>>> e998cc17100c58876756e3f53304188cb0e22ca2

View file

@ -4,8 +4,8 @@ My vim configuration is relatively straight forward.
###RC File ###RC File
* Word-wrap is set to 80 characters * Word-wrap is set to 80 characters
* Spaces not tabs; tab-length set to 5 * Mappings to quickly edit dotfiles
* Wild menu * Relative numbering, with mapping to quickly swap
###Directory ###Directory
Additionally, I have several extensions, as submodules, in .vim/bundle: Additionally, I have several extensions, as submodules, in .vim/bundle:
@ -16,14 +16,9 @@ Additionally, I have several extensions, as submodules, in .vim/bundle:
browser. browser.
* [Pathogen](https://github.com/tpope/vim-pathogen) to do the hard work. * [Pathogen](https://github.com/tpope/vim-pathogen) to do the hard work.
* [Templates](https://github.com/ap/vim-templates.git) for easy templates. * [Templates](https://github.com/ap/vim-templates.git) for easy templates.
* [vimwiki](https://github.com/vimwiki/vimwiki) for info, diary and notes.
###Font
I prefer using the Droid Monospace font for powerline, which is bundled here for
convenience.
####To-Do ####To-Do
* [ ] (Optional) Customize Airline more. * [ ] (Optional) 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
[vimwiki](https://github.com/vimwiki/vimwiki) for notes

Binary file not shown.