cfg/aa-00-00/zsh/.zsh-alias-global
inference 3e023263d5
feat(loc)!: switch system "aa000-0" name to "aa-00-00"
I have switched to a clearer naming convention for my systems. This
commit moves the directory and file locations to reflect that change.
2025-06-27 18:53:13 +00:00

29 lines
501 B
Plaintext

# Inferencium
# ZSH - Alias - Global
# Copyright 2022-2023 Jake Winters
# SPDX-License-Identifier: BSD-3-Clause-Clear
# Version: 5.1.0.11
# Navigation
alias ..='cd ../'
alias cl='clear'
alias l='ls -CF --color=auto'
alias la='ls -A --color=auto'
alias ll='ls -l --color=auto'
alias ls='ls -F --color=auto'
alias tr='tree -C'
# File management
alias clp='wl-copy'
alias cp='rsync -acv'
alias md='mkdir -v'
alias mv='mv -iv'
alias rm='rm -iv'
# Tools
alias diff='diff -s'
alias gco='git checkout'