From 364183b7f9e42bf82e404984a656ce68d02d2263 Mon Sep 17 00:00:00 2001 From: Julien Oculi Date: Thu, 11 Jul 2024 15:34:22 +0200 Subject: [PATCH] fix(zsh/config): missing `/usr/games` in `$PATH` --- zsh/zsh/.bashrc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/zsh/zsh/.bashrc b/zsh/zsh/.bashrc index 9360f69..85699c8 100644 --- a/zsh/zsh/.bashrc +++ b/zsh/zsh/.bashrc @@ -8,6 +8,8 @@ case $- in *) return;; esac +PATH=$PATH:/usr/games + # don't put duplicate lines or lines starting with space in the history. # See bash(1) for more options HISTCONTROL=ignoreboth