This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # https://github.com/marlonrichert/zsh-snap#installation | |
| # source ~/znap-plugins/zsh-snap/znap.zsh | |
| export COLORTERM=truecolor | |
| export HISTFILE="$HOME/.zsh_history" | |
| export GUILE_TLS_CERTIFICATE_DIRECTORY=/opt/homebrew/etc/gnutls/ | |
| # tell less not to paginate if less than a page |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ~/.config/starship.toml | |
| # --- | |
| # This is a WARP Optimized file! | |
| # More work would be needed to get something pretty in both iTerm2 and Warp | |
| # --- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "Ansi 3 Color" : { | |
| "Red Component" : 0.9424901008605957, | |
| "Color Space" : "Calibrated", | |
| "Blue Component" : 0.54832202196121216, | |
| "Alpha Component" : 1, | |
| "Green Component" : 0.98275065422058105 | |
| }, | |
| "Tags" : [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "emoji": "emoji", | |
| "add": false, | |
| "editor": true | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| kubectl 1.21.14 | |
| awscli 2.7.25 | |
| golang 1.19 | |
| nodejs 18.7.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # https://raw.githubusercontent.com/github/gitignore/main/Global/Diff.gitignore | |
| *.patch | |
| *.diff | |
| # https://github.com/github/gitignore/blob/main/Global/Dropbox.gitignore | |
| # Dropbox settings and caches | |
| .dropbox | |
| .dropbox.attr | |
| .dropbox.cache |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| set -eou pipefail | |
| DATE="date" | |
| if command -v gdate &> /dev/null | |
| then | |
| DATE="gdate" | |
| fi |
OlderNewer