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
| # load color parsing | |
| setopt PROMPT_SUBST | |
| autoload -U colors | |
| # load antigen | |
| source $HOME/.antigen/antigen.zsh | |
| # load the oh-my-zsh's library | |
| antigen use oh-my-zsh |
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
| ## linux | |
| alias clr='clear' | |
| alias aptup='sudo apt update && sudo apt upgrade -y && sudo apt autoremove -y && sudo apt clean' | |
| alias brewup='brew update && brew upgrade && brew cleanup' | |
| ## docker | |
| alias docker-stop='docker stop $(docker ps -a -q)' | |
| alias docker-remove='docker-stop && docker rm $(docker ps -a -q)' | |
| alias docker-downup='docker compose down && docker compose up' | |
| alias docker-remove-untagged-images='docker rmi $(docker images --filter "dangling=true" -q --no-trunc)' |
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
| import requests | |
| # write permissions for issues and pull requests, read for metadata | |
| TOKEN: str = "<your GH token>" | |
| LABELS: set[tuple[str, str, str]] = { | |
| ( | |
| "<your new label name>", | |
| "<your new label description>", |