diff options
author | Michaël Ball <michael.ball@krotosaudio.com> | 2025-08-19 10:29:00 +0100 |
---|---|---|
committer | Michaël Ball <michael.ball@krotosaudio.com> | 2025-08-19 10:29:00 +0100 |
commit | e269edfecae47a6dce9ade6a542045dad4c42e5d (patch) | |
tree | c4f0ab9546ea704a8436e28437f234a87da8b9d4 /zsh | |
parent | ac217752a86305288a94b74acba65e5ce9f0a41a (diff) |
zsh config updatesmain
Diffstat (limited to 'zsh')
-rw-r--r-- | zsh/.zshenv | 1 | ||||
-rw-r--r-- | zsh/.zshrc | 7 |
2 files changed, 8 insertions, 0 deletions
diff --git a/zsh/.zshenv b/zsh/.zshenv index bc88c29..b3e5c0c 100644 --- a/zsh/.zshenv +++ b/zsh/.zshenv @@ -20,5 +20,6 @@ export CMAKE_C_COMPILER=/usr/bin/clang export CMAKE_CXX_COMPILER=/usr/bin/clang++ . "$HOME/.cargo/env" +. "$HOME/.config/env/private" export OLLAMA_API_BASE=http://127.0.0.1:11434 @@ -36,7 +36,14 @@ eval $(thefuck --alias) eval "$(starship init zsh)" +# Aliases alias rm="rm -I" +alias grep='ug -G' +alias egrep='ug -E' +alias fgrep='ug -F' +alias zgrep='ug -zG' +alias zegrep='ug -zE' +alias zfgrep='ug -zF' # bun completions [ -s "/Users/michael/.bun/_bun" ] && source "/Users/michael/.bun/_bun" |