From 9adfb1f62762d03b8bd84522470465d2b7e42227 Mon Sep 17 00:00:00 2001 From: giomba Date: Thu, 29 Sep 2022 21:42:31 +0200 Subject: [PATCH] zshrc: add non-localized version of GCC. --- zshrc | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/zshrc b/zshrc index f8ccc9f..503a563 100644 --- a/zshrc +++ b/zshrc @@ -3831,7 +3831,18 @@ alias xopen='xdg-open' # Everybody likes an user interface with his native language, # but holy cow who is the idiot who localizes programming tools? +# How am I supposed to search the Internet with a fucking localized message? alias git='LANG=en_US.UTF-8 git' +alias gcc='LANG=en_US.UTF-8 gcc' +alias g++='LANG=en_US.UTF-8 g++' +alias ld='LANG=en_US.UTF-8 ld' +alias nm='LANG=en_US.UTF-8 nm' +alias objdump='LANG=en_US.UTF-8 objdump' +alias objcopy='LANG=en_US.UTF-8 objcopy' +english-please() +{ + export LANG=en_US.UTF-8 +} # git add -u, but ignore whitespaces gitadduw() {