this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix a couple issues with scp from bash

Make sure `brew` isn't a valid command on non-macos (will need to fix
for linuxbrew later) and hide some output for non-interactive to fix
scping from systems with this config.

+2 -2
+1 -1
.bashrc
··· 79 79 export PYTHONSTARTUP=$HOME/.pythonrc.py 80 80 81 81 # disable ctrl-s = suspend session 82 - stty -ixon 82 + [[ $- == *i* ]] && stty -ixon 83 83 84 84 if which thefuck &>/dev/null; then 85 85 eval "$(thefuck --alias)"
+1 -1
.bashrc.completions
··· 1 - if which -a brew | grep -qv '\.local'; then 1 + if command -v brew &>/dev/null; then 2 2 # homebrew bash-completion@2 3 3 if [ -r $(brew --prefix)/etc/profile.d/bash_completion.sh ]; then 4 4 source $(brew --prefix)/etc/profile.d/bash_completion.sh
.local/bin/brew .config/yadm/alt/.local/bin/brew##os.Darwin