From 7e56f4319585fe3f798cb91e4375a39bcd688a7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20K=C3=B6rber?= Date: Mon, 13 May 2024 11:25:17 +0200 Subject: [PATCH] zsh: Remove unused function --- zsh/zshrc.j2 | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/zsh/zshrc.j2 b/zsh/zshrc.j2 index 38e8463..7e87bfd 100644 --- a/zsh/zshrc.j2 +++ b/zsh/zshrc.j2 @@ -327,20 +327,6 @@ gb() { fi } -bm() { - case "$1" in - dev) - cd "$HOME/development/projects" - ;; - dot) - cd "$HOME/dotfiles" - ;; - *) - echo "unknown target" - ;; - esac -} - embiggen() { enscript --no-header --media=A4 --landscape --font="DejaVuSansMono30" -o - 2>/dev/null | ps2pdf - | zathura - }