summaryrefslogtreecommitdiff
path: root/.config/zsh/.zshrc
diff options
context:
space:
mode:
Diffstat (limited to '.config/zsh/.zshrc')
-rw-r--r--.config/zsh/.zshrc10
1 files changed, 6 insertions, 4 deletions
diff --git a/.config/zsh/.zshrc b/.config/zsh/.zshrc
index 096a1d2..72f2124 100644
--- a/.config/zsh/.zshrc
+++ b/.config/zsh/.zshrc
@@ -100,10 +100,10 @@ alias bright="brightnessctl set"
alias mypy="python3 -m mypy --strict"
alias venv=". $HOME/.local/share/venv/bin/activate"
-# if [ "$(uname)" != "Darwin" ]
-# then
-# alias git="today git"
-# fi
+if [ "$(uname)" != "Darwin" ]
+then
+ alias git="today git"
+fi
e() {
emacsclient -c "$@" &
@@ -125,3 +125,5 @@ chpwd_functions=(${chpwd_functions[@]} "cd_list")
export QT_ENABLE_HIGHDPI_SCALING=1
export QT_AUTO_SCREEN_SCALE_FACTOR=1.5
export QT_SCALE_FACTOR=1.5
+
+alias tcommit="git commit --date='Thu Jan 1 00:00:00 UTC 1970'"