Skip to content

Instantly share code, notes, and snippets.

@wmudge
wmudge / launch.json
Created April 18, 2019 17:43
Debugging Jest tests with Theia
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Jest All",
"program": "${workspaceFolder}/node_modules/.bin/jest",
@wmudge
wmudge / gitconfig
Last active March 15, 2023 21:33
Git
[alias]
hist = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%Creset' --abbrev-commit --date=relative
resign = "!re() { git rebase --exec 'git commit --amend --no-edit -n -S' -i $1; }; re"