ZSH: Linted files

This commit is contained in:
Christian Baer 2024-10-29 13:59:15 +01:00
parent 864f0805ba
commit 384dcae932
6 changed files with 29 additions and 22 deletions

View File

@ -1,14 +1,21 @@
# Search for docker-compose files in the current and all sub direcotries and run docker compose with provided arguments # Search for docker-compose files in the current and all sub direcotries and run docker compose with provided arguments
function dc() { function dc() {
if [ -z "$1" ]; then
# display usage if no parameters given
echo "Search for docker-compose files in the current and all sub direcotries and run docker compose with provided arguments"
echo "Usage: dc <docker compose commands>"
return 1
else
# Save current working directory # Save current working directory
CURRENT_DIR="${PWD}" CURRENT_DIR="${PWD}"
for file in $(find ${PWD} -maxdepth 2 -type f -regextype posix-extended -regex '.*(docker-compose|compose)\.ya?ml' | sort); do for file in $(find ${PWD} -maxdepth 2 -type f -regextype posix-extended -regex '.*(docker-compose|compose)\.ya?ml' | sort); do
cd $(dirname "$file") cd $(dirname "$file")
docker compose $@ docker compose $@
done done
# Change back to saved working directory # Change back to saved working directory
cd ${CURRENT_DIR} cd ${CURRENT_DIR}
} fi
}

View File

@ -1,21 +1,21 @@
## Automatically compile all compilable files to zwc ## Automatically compile all compilable files to zwc
function zwcautocompile () { function zwcautocompile() {
autoload -Uz zrecompile autoload -Uz zrecompile
for zsh_file in $(find ${ZDOTDIR} -maxdepth 3 -type f \( -name "*.zsh" -o -name ".zlogin" -o -name ".zshrc" \) ! -name "*.zwc" ! -name "*.zwc.old"); do for f in $(find ${ZDOTDIR} -maxdepth 3 -type f \( -name "*.zsh" -o -name ".zlogin" -o -name ".zshrc" \) ! -name "*.zwc" ! -name "*.zwc.old"); do
zrecompile -pq $zsh_file && rm -f $zsh_file.zwc.old zrecompile -pq ${f} && rm -f ${f}.zwc.old
done done
if [[ -d ${ZAUTOLOADDIR} ]]; then if [[ -d ${ZAUTOLOADDIR} ]]; then
for f in ${ZAUTOLOADDIR}/*; do for f in ${ZAUTOLOADDIR}/*; do
zrecompile -pq $f && rm -f $f.zwc.old zrecompile -pq ${f} && rm -f ${f}.zwc.old
done done
fi fi
if [[ -d ${ZLIBDIR} ]]; then if [[ -d ${ZLIBDIR} ]]; then
for f in ${ZLIBDIR}/*; do for f in ${ZLIBDIR}/*; do
zrecompile -pq $f && rm -f $f.zwc.old zrecompile -pq ${f} && rm -f ${f}.zwc.old
done done
fi fi
} }

View File

@ -1,8 +1,8 @@
## Purge all compiled zwc files ## Purge all compiled zwc files
function zwcpurge () { function zwcpurge() {
autoload -Uz zrecompile autoload -Uz zrecompile
for zsh_file in $(find ${ZDOTDIR} -maxdepth 3 -type f \( -name "*.zwc" -o -name "*.zwc.old" \)); do for zsh_file in $(find ${ZDOTDIR} -maxdepth 3 -type f \( -name "*.zwc" -o -name "*.zwc.old" \)); do
rm -f ${zsh_file} rm -f ${zsh_file}
done done
} }

View File

@ -2,10 +2,10 @@
if [[ -d "${ZAUTOLOADDIR}" ]]; then if [[ -d "${ZAUTOLOADDIR}" ]]; then
fpath=($fpath ${ZAUTOLOADDIR}) fpath=($fpath ${ZAUTOLOADDIR})
# Load functions # Load functions
for func in ${ZAUTOLOADDIR}/*; do for func in ${ZAUTOLOADDIR}/*; do
autoload -Uz ${func:t} autoload -Uz ${func:t}
done done
fi fi

View File

@ -21,6 +21,5 @@ export PYTHONUSERBASE=${HOME}/.local
export INPUTRC="${XDG_CONFIG_HOME}/readline/inputrc" export INPUTRC="${XDG_CONFIG_HOME}/readline/inputrc"
export MANPATH="${MANPATH-$(manpath)}:${HOME}/.local/share/man" export MANPATH="${MANPATH-$(manpath)}:${HOME}/.local/share/man"
# EZA # EZA
EZA_CONFIG_DIR=${XDG_CONFIG_HOME}/eza EZA_CONFIG_DIR=${XDG_CONFIG_HOME}/eza

View File

@ -1,4 +1,5 @@
# zsh-history-substring-search configuration # Keybindings
bindkey '^[[A' history-substring-search-up # or '\eOA' bindkey '^[[A' history-substring-search-up # or '\eOA'
bindkey '^[[B' history-substring-search-down # or '\eOB' bindkey '^[[B' history-substring-search-down # or '\eOB'
HISTORY_SUBSTRING_SEARCH_ENSURE_UNIQUE=1 HISTORY_SUBSTRING_SEARCH_ENSURE_UNIQUE=1