From a064375c2b090e9c3f608356515a77692a3547f6 Mon Sep 17 00:00:00 2001 From: Ade Attwood Date: Sun, 21 Nov 2021 11:01:40 +0000 Subject: [PATCH] feat(shell): add comby shell aliases The main reason for this is to automatically exclude common directories form the search and replace to speed things up a bit. --- site-modules/core/files/oh-my-zsh/custom/comby.zsh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 site-modules/core/files/oh-my-zsh/custom/comby.zsh diff --git a/site-modules/core/files/oh-my-zsh/custom/comby.zsh b/site-modules/core/files/oh-my-zsh/custom/comby.zsh new file mode 100644 index 0000000..312ed46 --- /dev/null +++ b/site-modules/core/files/oh-my-zsh/custom/comby.zsh @@ -0,0 +1,11 @@ +#!/bin/zsh +# +# Alias for comby cli tool +# +# See: https://comby.dev/ +# +# Author: Ade Attwood +# Updated: 2021-11-21 +# + +alias comby="comby -exclude-dir vendor,node_modules,.git,.log,logs,tmp,runtime,tests/_output"