dotfiles

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

commit e54587a62c57bc18927baf1cd18c43cfda8940e7
parent 196ff0f5367cb781608f1d5e6cb77d6d98b80a1a
Author: Alex Balgavy <a.balgavy@gmail.com>
Date:   Wed,  5 Feb 2020 21:56:05 +0100

shell: add gsed to path

Former-commit-id: 7dc4972395d6373717ac14de3f3dceae9832d93e
Diffstat:
Mshell/profile | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/shell/profile b/shell/profile @@ -47,6 +47,9 @@ fi if command -v rbenv &>/dev/null; then eval "$(rbenv init -)" fi +if [ -d "/usr/local/opt/gnu-sed/libexec/gnubin" ]; then + PATH="/usr/local/opt/gnu-sed/libexec/gnubin:$PATH" +fi export DOTFILES="$HOME/.dotfiles" export EDITOR="`which vim`"