Skip to content

Instantly share code, notes, and snippets.

View totocaster's full-sized avatar

Toto Tvalavadze totocaster

View GitHub Profile

Keybase proof

I hereby claim:

  • I am totocaster on github.
  • I am totocaster (https://keybase.io/totocaster) on keybase.
  • I have a public key whose fingerprint is CAD9 42FE 17F3 1FF5 670C C26C D5E6 155F DAA7 DF16

To claim this, I am signing this object:

@totocaster
totocaster / Preferences.sublime-settings
Last active December 12, 2017 01:21
Note to myself: current user settings for Sublime Text 3.
{
"added_words":
[
"blogs",
"blog",
"podcast",
"microblog",
"microblogging",
"smartwatches",
"microcontrollers",
@totocaster
totocaster / .gitconfig
Created June 2, 2014 15:35
My .gitconfig aliases. I will post more updates as I progress.
[alias]
ci = commit
co = checkout
st = status
lg = log --graph --abbrev-commit --decorate --date=relative --format=format:'%C(blue)%h%C(reset) - %C(green)%ar%C(reset) %C(black)%s%C(reset) %C(dim black)[%an]%C(reset)%C(red)%d%C(reset)' --all # git log with lot of detail and tree-view
ll = log --pretty=format:'%C(blue)%h%Cred%d %Creset%s%Cblue %C(dim black)[%an]%C(reset)' --decorate # short and practical version of alias.lg
dfl = diff --cached HEAD^ #diff last commit
la = "!git config -l | grep alias | cut -c 7-" # list of all aliases, just to remember them all