dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

commit 25448afb9a515e2dd650d59c001f7f9226d08aea
parent 63c22b9e8ac7f6028e132044f3364c3ba8c71da4
Author: Alex Balgavy <alex@balgavy.eu>
Date:   Tue,  1 Dec 2020 13:30:50 +0100

shell: install man-db from homebrew

I'm using a different man now. Because the built-in one throws some
`grotty` errors.


Former-commit-id: f8691c58831cc880920e43d8057cad2970b42de3
Diffstat:
Mshell/paths | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/shell/paths b/shell/paths @@ -12,5 +12,6 @@ [ -d "$HOME/.scripts" ] || [ -L "$HOME/.scripts" ] && [ -n "${PATH##*"$HOME/.scripts"*}" ] && PATH="$HOME/.scripts:$PATH" [ -d "$HOME/.local/share/gems/bin" ] || [ -L "$HOME/.local/share/gems/bin" ] && [ -n "${PATH##*"$HOME/.local/share/gems/bin"*}" ] && PATH="$HOME/.local/share/gems/bin:$PATH" [ -d "$HOME/.elan/bin" ] && [ -n "${PATH##*"$HOME/.elan/bin"*}" ] && PATH="$HOME/.elan/bin:$PATH" +[ -d /usr/local/opt/man-db/libexec/bin ] && [ -n "${PATH##*"/usr/local/opt/man-db/libexec/bin"*}" ] && PATH="/usr/local/opt/man-db/libexec/bin:$PATH" command -v rbenv 1>/dev/null 2>&1 && eval "$(rbenv init -)" export PATH