Compare commits

..

No commits in common. "2b72ea43aae6f0fc51de24ccd7ffbd09220586bb" and "4f72c9bde03566e781afded25ddd63aa06853004" have entirely different histories.

2 changed files with 6 additions and 3 deletions

View file

@ -3,8 +3,6 @@ alias ls='ls --color=auto'
alias jaaj="jaaj | lolcat"
alias esp-idf-setup=". ~/.local/lib/esp-idf/export.sh"
alias steam="steam-runtime"
# Git
alias ga="git add"
alias gc="git commit"
@ -25,7 +23,7 @@ alias ip="ip --color=auto"
# uutils-coreutils aliases
if command -v pacman &> /dev/null; then
if pacman -Qi uutils-coreutils &> /dev/null; then
for b in $(pacman -Ql uutils-coreutils | grep bin | cut -d ' ' -f 2 | cut -d '/' -f 4 | cut -d '-' -f 2); do
for b in $(yay -Ql uutils-coreutils | grep bin | cut -d ' ' -f 2 | cut -d '/' -f 4 | cut -d '-' -f 2); do
alias $b="uu-$b"
done
unalias [

View file

@ -16,6 +16,11 @@ fi
[[ -z "$FUNCNEST" ]] && export FUNCNEST=100 # limits recursive functions, see 'man bash'
## SSH agent
if [[ ! -n ${SSH_CONNECTION} ]]; then
export SSH_AUTH_SOCK="$XDG_RUNTIME_DIR/ssh-agent.socket"
fi
## Use the up and down arrow keys for finding a command in history
## (you can write some initial letters of the command first).
bind '"\e[A":history-search-backward'