A custom status line for Claude Code that replaces the default status bar with a rich, gitstatus-inspired display.
Git info (when inside a repo):
A custom status line for Claude Code that replaces the default status bar with a rich, gitstatus-inspired display.
Git info (when inside a repo):
If you're not already installed Direnv you can do it using Homebrew:
brew install direnvDo not forget to properly setup the shell hook for your Bash, ZSH, etc. (whatever shell you use) ... see https://direnv.net/docs/hook.html
| web3.eth.accounts; | |
| web3.personal.unlockAccount(web3.eth.accounts[0], "solutions.hamburg", 3600); | |
| // abi def | |
| var helloworldJsonDef = [{ | |
| "constant": true, | |
| "inputs": [{"name": "a", "type": "uint256"}, {"name": "b", "type": "uint256"}], | |
| "name": "add", | |
| "outputs": [{"name": "result", "type": "uint256"}], | |
| "payable": false, |
| pragma solidity ^0.4.13; | |
| contract Testament { | |
| address public owner; | |
| uint256 public lastSeen; | |
| address public myBuddy; | |
| address public myGirl; | |
| address public myChild; |
| pragma solidity ^0.4.13; | |
| contract HelloWorld { | |
| event Greeting ( | |
| address indexed from, | |
| string indexed name, | |
| string message | |
| ); | |
| function HelloWorld() {} |
| contract AbiExample { | |
| function bar(bytes3[2] xy) {} | |
| function baz(uint32 x, bool y) returns (bool r) { | |
| r = x > 32 || y; | |
| } | |
| } |
| if test -f $HOME/.gpg-agent-info && \ | |
| kill -0 `cut -d: -f 2 $HOME/.gpg-agent-info` 2>/dev/null; then | |
| . $HOME/.gpg-agent-info | |
| export GPG_AGENT_INFO | |
| export SSH_AUTH_SOCK | |
| else | |
| eval `/usr/local/bin/gpg-agent --daemon --write-env-file` | |
| fi | |
| export GPG_TTY=`tty` |