this gist is depracated.
moved contents to a google doc.
you should have been invited.
this gist is depracated.
moved contents to a google doc.
you should have been invited.
This is my open source TODO list. | |
* clib needs a way to install locally in $HOME | |
* pip installs in ~/.local, which may be a good place to do it | |
* should have a ~/.clibrc or ~/.config/clib/config.js to set defaults | |
* (optionally) store what's installed so that 'clib update' works (maybe $PREFIX/var/clib.db) | |
* (optionally) keep the code around in $PREFIX/src/... and issue a git pull when updating | |
* airline whitespace detection needs a "goto error" feature | |
* autoload/airline/extensions/whitespace.vim |
" for examples, see: | |
" https://gist.github.com/RobertAudi/bededdec48e4e3eb4dde | |
" https://gist.github.com/calorie/cd2692a6b3f39f94f1ae | |
" https://github.com/haya14busa/dotfiles/blob/master/.cvimrc | |
let blacklists = ["https://mail.google.com/*","https://www.google.com/calendar/*","http*://news.ycombinator.com/*","http*://www.reddit.com/*","http*://*google.com/*","https://news.ycombinator.com/*","http://www.reddit.com/*","https://www.reddit.com/*"] | |
" maybe also... "*://*/*.pdf", "chrome://*", | |
" ------------------------ |
#!/bin/bash | |
# 2015 (C) [email protected] | |
# loosly based on | |
# https://github.com/kepkin/dev-shell-essentials | |
set -e | |
self=$(basename $0) | |
fg_colors=( red green yellow blue magenta cyan ) | |
autocolor= |
" .vimrc of Bart Trojanowski | |
" | |
" You can get a more upto date version from | |
" http://www.jukie.net/~bart/conf/vimrc | |
" | |
" Most files sourced by this vimrc are located here: | |
" http://www.jukie.net/~bart/conf/vim/ | |
" force VIMRUNTIME to a working directory, if needed | |
source ~/.vim/find_runtime.vim |
Bundle 'mattn/webapi-vim' | |
Bundle 'mattn/gist-vim' |
i3-msg rename workspace abc to xyz |
# https://github.com/seebi/tmux-colors-solarized/blob/master/tmuxcolors-256.conf | |
set-option -g status-bg colour235 #base02 | |
set-option -g status-fg colour136 #yellow | |
set-option -g status-attr default | |
# set window split | |
bind-key v split-window -h | |
bind-key b split-window | |
# detach |
[alias] | |
# create a new feature branch on the same remote as current branch | |
new-feature = "!f() { local feature=$1 remote=$2 base=$3 ; \ | |
if [[ -z $feature ]] ; then \ | |
echo >&2 \"git new-feature <branch> [ <remote> ] \" ; \ | |
return 1 ; \ | |
fi ; \ | |
if [[ -z $remote ]] ; then \ | |
local cur=$( git rev-parse --revs-only --symbolic-full-name HEAD ) ; \ | |
cur=${cur#refs/heads/} ; \ |