Skip to content

Instantly share code, notes, and snippets.

View willtim's full-sized avatar

Tim Williams willtim

  • London
View GitHub Profile
@willtim
willtim / .minttyrc
Created January 13, 2017 18:35
minttyrc - zenburn
BoldAsFont=-1
Columns=160
Rows=60
ClipShortcuts=no
CtrlShiftShortcuts=yes
Term=xterm-256color
CursorType=block
# Zenburn scheme - Source: http://slinky.imukuppi.org/zenburnpage/
CursorColour=#BFBFBF
@willtim
willtim / keybase.md
Created April 3, 2017 21:52
Proof of github identity

Keybase proof

I hereby claim:

  • I am willtim on github.
  • I am willtim (https://keybase.io/willtim) on keybase.
  • I have a public key whose fingerprint is 0BE4 0021 BC8C 398F 7BF3 EBD3 5140 CC90 BC07 887C

To claim this, I am signing this object:

@willtim
willtim / explore.el
Created August 10, 2017 16:29
Emacs project explorer
;; project tree explorer
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; see https://github.com/nathankot/dotemacs/blob/master/init.el
(use-package projectile
:ensure projectile
:config (projectile-global-mode t)
:init
;; (setq projectile-require-project-root nil)
(setq projectile-enable-caching t)
@willtim
willtim / git-cheatsheet.txt
Created November 17, 2017 16:43
Git cheatsheet
* Git Cheatsheet
git stash --keep-index
git clean -d -n
git commit --amend (amend last commit)
git reflog (a history of the commits HEAD has been pointed at; undo pulls, rebases etc)