From 08996a92ebeccc01e523f79723efcd9b20922e98 Mon Sep 17 00:00:00 2001 From: sommerfeld Date: Wed, 20 May 2026 13:56:08 +0100 Subject: feat(zsh): add dj/rj aliases for dotfiles and remote-dev justfiles dj invokes ~/dotfiles/justfile and rj invokes ~/.local/share/dotfiles/remote-dev/justfile, both pinned to the justfile's directory via --working-directory so the aliases behave identically from any CWD. --- dot_config/zsh/dot_zshrc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dot_config/zsh/dot_zshrc b/dot_config/zsh/dot_zshrc index faf538b..138982b 100644 --- a/dot_config/zsh/dot_zshrc +++ b/dot_config/zsh/dot_zshrc @@ -357,6 +357,8 @@ reload-env() { # Just alias j='just' +alias dj='just --justfile ~/dotfiles/justfile --working-directory ~/dotfiles' +alias rj='just --justfile ~/.local/share/dotfiles/remote-dev/justfile --working-directory ~/.local/share/dotfiles/remote-dev' # LLVM / Clang tooling alias ncmake='cmake -G Ninja -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DCMAKE_C_FLAGS="$DEV_CFLAGS" -DCMAKE_CXX_FLAGS="$DEV_CFLAGS" -DCMAKE_INSTALL_PREFIX=build/install -DCMAKE_BUILD_TYPE=Debug -DBUILD_SHARED_LIBS=ON -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -B build' -- cgit v1.3.1