Refactor shell aliases to move folder navigation aliases to the utility section
Some checks failed
Ansible Lint Check / check-ansible (push) Successful in 27s
Nix Format Check / check-format (push) Successful in 1m15s
Python Lint Check / check-python (push) Failing after 5s

This commit is contained in:
2025-09-24 18:32:05 +02:00
parent c6449affcc
commit d28c0fce66

View File

@@ -137,12 +137,6 @@
# Shell aliases
shellAliases = {
# Folder navigation
# "." = "cd .";
# ".." = "cd ..";
# "..." = "cd ../..";
# "...." = "cd ../../..";
# Docker Compose alias (for old scripts)
"docker-compose" = "docker compose";
@@ -197,6 +191,11 @@
# Utility aliases
"random" = "openssl rand -base64";
# Folder navigation
".." = "cd ..";
"..." = "cd ../..";
"...." = "cd ../../..";
};
# Profile extra (runs for login shells)