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
. "$HOME/.cargo/env" | |
. "$HOME/.rye/env" | |
export NVM_DIR="$HOME/.nvm" | |
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm | |
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion | |
# pnpm | |
export PNPM_HOME="/home/entropybender/.local/share/pnpm" | |
case ":$PATH:" in |
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
DERIVE_ORDER:="Debug,Default,Error,Clone,Copy,Deref,DerefMut,PartialEq,Eq,PartialOrd,Ord,Hash,Serialize,Deserialize,FromStr,EnumIter,Display,EnumString,JsonSchema" | |
cargo-clean: | |
#!/usr/bin/env bash | |
set -euo pipefail | |
for dir in ~/repos/*/; do | |
if [ -d "$dir" ]; then | |
cd "$dir" && cargo clean && rm -f *.lock | |
fi | |
done |
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
set shell := ["bash", "-uc"] | |
set export | |
set dotenv-load | |
default: | |
@just --choose --justfile {{justfile()}} | |
bulk-sys-deps: | |
#!/usr/bin/env bash |
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 -euo pipefail | |
sudo dnf update -y | |
sudo dnf install -y just fzf plasma-oxygen shellcheck btop | |
sudo reboot |
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
{"name":"Phronetic Horizons","settings":"{\"settings\":\"{\\n \\\"[html]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"vscode.html-language-features\\\"\\n },\\n \\\"[graphql][typescript][javascript][javascriptreact][typescriptreact]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"esbenp.prettier-vscode\\\",\\n \\\"editor.tabSize\\\": 2,\\n \\\"editor.codeActionsOnSave\\\": {\\n \\\"source.fixAll.eslint\\\": \\\"explicit\\\",\\n \\\"source.organizeImports\\\": \\\"explicit\\\",\\n \\\"source.sortPackageJson\\\": \\\"explicit\\\"\\n }\\n },\\n \\\"[sql]\\\": {\\n \\\"editor.formatOnSave\\\": true,\\n \\\"editor.defaultFormatter\\\": \\\"inferrinizzard.prettier-sql-vscode\\\"\\n },\\n \\\"[rust]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"rust-lang.rust-analyzer\\\",\\n \\\"editor.formatOnSave\\\": true\\n },\\n \\\"rust-analyzer.completion.fullFunctionSignatures.enable\\\": true,\\n \\\"rust-analyzer.completion.termSearch.enable\\\": true,\\n \\\"rust-ana |