From cf885ff98fe573235c7a0433257afdf8b2a1b0e6 Mon Sep 17 00:00:00 2001 From: self Date: Tue, 7 Mar 2023 20:45:35 +0000 Subject: cdtld + make cd aliases faster --- zsh/.zshrc | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) (limited to 'zsh/.zshrc') diff --git a/zsh/.zshrc b/zsh/.zshrc index d12b918..161d0f3 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -1,3 +1,4 @@ +#!/bin/zsh # Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.config/zsh/.zshrc. # Initialization code that may require console input (password prompts, [y/n] # confirmations, etc.) must go above this block; everything else may go below. @@ -72,13 +73,9 @@ abbrev-alias x="clear; ls" abbrev-alias t="ls --tree" # cd aliases, from $ORGD_CDALIAS_PATH -strip-comments "$ORGD_CDALIAS_PATH" | strip-blank > /tmp/orgd-cd-aliases -while read l ; do - a="cd$(echo $l | awk -F' ' '{print $1}')"; - c="$(echo $l | awk -F' ' '{print $2}')" - alias $a="cd $c" -done < /tmp/orgd-cd-aliases -rm /tmp/orgd-cd-aliases +while read a c ; do + alias "cd$a"="cd $c" +done <<< "$(strip-comments "$ORGD_CDALIAS_PATH" | strip-blank)" # vim / nvim @@ -136,10 +133,6 @@ autoload -Uz compinit compinit # End of lines added by compinstall -# z - must go after compinit -eval "$(zoxide init zsh --cmd cd)" - - # Sourcing for zsh source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh -- cgit v1.2.1