A ZSH theme optimized for people who use:
- Solarized
- Git
- Unicode-compatible fonts and terminals (I use iTerm2 + Menlo)
For Mac users, I highly recommend iTerm 2 + Solarized Dark
| #!/usr/bin/python | |
| import fileinput | |
| import json | |
| if __name__ == "__main__": | |
| text = '' | |
| for line in fileinput.input(): | |
| text = text + ' ' + line.strip() | |
| jsonObj = json.loads(text) | |
| print json.dumps(jsonObj, sort_keys=False, indent=2) |