Skip to content

Instantly share code, notes, and snippets.

module.exports = {
config: {
// default font size in pixels for all tabs
fontSize: 12,
// font family with optional fallbacks
fontFamily: 'Menlo, "DejaVu Sans Mono", Consolas, "Lucida Console", monospace',
// terminal cursor background color and opacity (hex, rgb, hsl, hsv, hwb or cmyk)
cursorColor: 'rgba(248,28,229,0.8)',
@elmarburke
elmarburke / keybase.md
Created May 16, 2017 09:58
keybase.md

Keybase proof

I hereby claim:

  • I am elmarburke on github.
  • I am elmarburke (https://keybase.io/elmarburke) on keybase.
  • I have a public key ASCCa6m1h_e6Bbrtm1us-ZK-GHHF4j-oAg7nuw8bQwxmUQo

To claim this, I am signing this object:

@elmarburke
elmarburke / machine.js
Created April 16, 2021 15:31
Generated by XState Viz: https://xstate.js.org/viz
const nestMachine = Machine({
id: 'nest',
initial: 'initial',
context: {
user: null,
},
states: {
initial: {
on: { SIGN_IN: { target: 'dashboard', actions: ['signIn'] } },
},