diff options
author | self <george@gabbott.dev> | 2023-02-25 22:03:07 +0000 |
---|---|---|
committer | self <george@gabbott.dev> | 2023-02-25 22:03:07 +0000 |
commit | 0bfd715780350d25811af07c56a05d179bad488d (patch) | |
tree | e34e85e1da2870897a5ed4933f554731ee5f6227 /zsh/.zshrc | |
parent | c83b23e473d70861b6d5013009da5d429886402f (diff) |
Remove TODO comments plugin.
Diffstat (limited to 'zsh/.zshrc')
-rw-r--r-- | zsh/.zshrc | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -72,11 +72,14 @@ 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 < $ORGD_CDALIAS_PATH +done < /tmp/orgd-cd-aliases +rm /tmp/orgd-cd-aliases + # vim / nvim alias vim="nvim" |