Add run aliases

This commit is contained in:
Oliver Davies 2023-12-21 12:00:49 +00:00
parent f319519159
commit 512f86cf66
2 changed files with 14 additions and 0 deletions

View file

@ -8,6 +8,10 @@ Instead of grouping changes by tag, they are grouped by the date they are releas
## 21st December 2023
### Added
* Add `run` aliases to zsh.
### Changed
* Change `splitbelow` to `false` in Neovim.

View file

@ -157,6 +157,16 @@
alias tf="terraform"
# run scripts.
alias r="run"
alias rc="run composer"
alias rd="run drush"
alias rdcr="run drush cr"
alias rdup="run drush updb -y"
alias rdce="run drush config:export -y"
alias rdci="run drush config:import -y"
alias rduli="run drush uli"
# Build Configs.
ialias build-configs="~/Code/Personal/build-configs/bin/build-configs run"
ialias update-build-configs="~/Code/Personal/build-configs-updater/update.sh"