diff options
-rw-r--r-- | .aliases.bashrc | 6 | ||||
-rw-r--r-- | .bashrc | 2 | ||||
-rw-r--r-- | .config/git/config | 2 | ||||
-rw-r--r-- | .ssh/config | 10 |
4 files changed, 17 insertions, 3 deletions
diff --git a/.aliases.bashrc b/.aliases.bashrc index 1184f9c..1583330 100644 --- a/.aliases.bashrc +++ b/.aliases.bashrc @@ -3,8 +3,10 @@ alias g='grep' alias ls='ls --color=auto' alias grep='grep --color=auto' alias ip='ip -color=auto' +xqrs() { + xbps-query -Rs "$@" | grep -v 32bit ; +} alias xqr='xbps-query -R' -alias xqrs='xbps-query -Rs' alias kb='kak ~/.bashrc' @@ -31,4 +33,4 @@ alias enjerv="_enjerv; cd /home/rebecca/jerv/files" gb () { grep "$1" ~/.bash_history; } alias k='rlwrap ~/src/k/k ~/src/k/repl.k' -gw () { grep "$@" /usr/share/dict/words; } +gw () { grep "$@" ~/corncob.txt; } @@ -10,7 +10,7 @@ prompt_color() { case "$1" in snail) c=8 ;; ubq323.website) c=92 ;; - joe) c=125 ;; + joe|walter) c=125 ;; woman) c=136 ;; *) c=72 ;; esac diff --git a/.config/git/config b/.config/git/config index 91308e0..765aad1 100644 --- a/.config/git/config +++ b/.config/git/config @@ -16,3 +16,5 @@ smtpserverport=587 confirm=always annotate=yes +[rebase] + autoSquash = yes diff --git a/.ssh/config b/.ssh/config index 83bc6d6..e8bc958 100644 --- a/.ssh/config +++ b/.ssh/config @@ -33,3 +33,13 @@ Host newjerver Host media Hostname 192.168.0.17 User mj + +Host github + HostName github.com + User git + IdentityFile ~/.ssh/id_github + +Host srht + HostName git.sr.ht + User git + IdentityFile ~/.ssh/id_srht |