Skip to content

Instantly share code, notes, and snippets.

View adam2k's full-sized avatar
⚛️
Up and at them

Adam Vandover adam2k

⚛️
Up and at them
View GitHub Profile
# migrating from https://github.com/robbyrussell/oh-my-zsh/blob/master/plugins/git/git.plugin.zsh
# Aliases
alias g='git'
#compdef g=git
alias gst='git status'
#compdef _git gst=git-status
alias gd='git diff'
#compdef _git gd=git-diff
alias gdc='git diff --cached'
@adam2k
adam2k / .vscode launch.json
Last active August 8, 2022 19:10
Bitcoin .vscode/launch.json
{
"version": "0.2.0",
"configurations": [
{
"name": "(lldb) Debug bitcoind",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/src/bitcoind",
"args": ["-debug"],
"stopAtEntry": false,
# Your init script
#
# Atom will evaluate this file each time a new window is opened. It is run
# after packages are loaded/activated and after the previous editor state
# has been restored.
#
# An example hack to log to the console when each text editor is saved.
#
# atom.workspace.observeTextEditors (editor) ->
# editor.onDidSave ->