From 2b710127997bc72c48ced23a188f5e51d935daa4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20Wo=C5=BAniak?= Date: Sat, 27 Jun 2026 23:19:03 +0200 Subject: [PATCH] zshrc: finder has been added as command MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Marcin Woźniak --- .zshrc | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.zshrc b/.zshrc index 8baad48..5aa52d4 100644 --- a/.zshrc +++ b/.zshrc @@ -57,7 +57,6 @@ export XMODIFIERS=@im=ibus export QT_IM_MODULE=ibus export _JAVA_AWT_WM_NONREPARENTING=1 export CCACHE_DIR="/usr/ccache" -export LC_ALL="en_US.UTF-8" export LANG=en_US.UTF-8 export LC_ALL=en_US.UTF-8 export BROWSER=$HOME/.local/bin/browser-x @@ -109,6 +108,12 @@ alias dt='LC_TIME=C /bin/date "+%Y%m%d%H%M%S"' # Alias and Export for Mac if [[ "$(uname)" == "Darwin" ]]; then + # Unsetting LANGs and settings it + unset LANG LC_ALL + + export LC_ALL=C.UTF-8 + export LANG=C.UTF-8 + # Enabling a HOMEBREW in preview versions of MacOS export HOMEBREW_DEVELOPER=1 export HOMEBREW_NO_REQUIRE_TAP_TRUST=1 @@ -163,6 +168,7 @@ if [[ "$(uname)" == "Darwin" ]]; then alias restart-network-share="sudo pkill -i netauthsysagent" alias streamlink="streamlink --config $HOME/.config/streamlink/config" alias powershell="pwsh" + alias finder="open -a Finder ." # Terraform export TFENV_ARCH=amd64