diff options
author | 2025-03-01 12:27:19 -0500 | |
---|---|---|
committer | 2025-03-01 12:27:19 -0500 | |
commit | b786be7cda981e20c2ed5851bf49b2a8bdbb8eac (patch) | |
tree | 1747a341b176fb451f9608b6d4e06bf9c8318db4 | |
parent | 1214ac92544ab74d227955affbd0a67744a5785b (diff) | |
download | configs-b786be7cda981e20c2ed5851bf49b2a8bdbb8eac.tar.gz configs-b786be7cda981e20c2ed5851bf49b2a8bdbb8eac.tar.xz configs-b786be7cda981e20c2ed5851bf49b2a8bdbb8eac.zip |
Various updates
-rw-r--r-- | .bashrc | 22 | ||||
-rw-r--r-- | .emacs.d/lisp/bandali-misc.el | 9 |
2 files changed, 26 insertions, 5 deletions
@@ -30,7 +30,7 @@ fi # Set a fancy prompt (non-color, unless we know we "want" color). case "$TERM" in - xterm-color|*-256color) color_prompt=yes;; + xterm-color|*-256color|*-truecolor) color_prompt=yes;; esac # Uncomment for a colored prompt, if the terminal has the capability; @@ -95,7 +95,7 @@ HISTFILESIZE= HISTCONTROL=ignoreboth # ignore a few very common commands and don't add them to history #HISTIGNORE='ls:l:ll:s:g:[bf]g:history:da:li' -HISTIGNORE='sc:sr*' +HISTIGNORE='sc:sr*:m' HISTTIMEFORMAT='%F %T ' stty stop "" @@ -155,7 +155,7 @@ alias mpva="mpv --ytdl-format=bestaudio" # mail alias mbsync='mbsync -c "$XDG_CONFIG_HOME"/isync/mbsyncrc' alias getmail='getmail --getmaildir "$XDG_CONFIG_HOME"/getmail --rcfile getmailrc' -alias m="mbsync kelar; mbsync ia; getmail" +# alias m --> defined below # theme alias da='change-theme dark' alias li='change-theme light' @@ -169,6 +169,22 @@ alias alert='notify-send --urgency=low \ -i "$([ $? = 0 ] && echo terminal || echo error)" \ "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"' +__host="$(hostname)" +case $__host in + selene) + alias m="mbsync csclub; mbsync kelar; mbsync ia; getmail" + ;; + adelita) + alias m="mbsync kelar; mbsync ia; getmail" + ;; + monarch) + alias m="mbsync ia" + ;; + *) + ;; +esac +unset __host + bash_completions_dir=/usr/share/bash-completion/completions/ alias dquilt="quilt --quiltrc=${XDG_CONFIG_HOME}/quilt/quiltrc-dpkg" diff --git a/.emacs.d/lisp/bandali-misc.el b/.emacs.d/lisp/bandali-misc.el index 7a74888..90591ce 100644 --- a/.emacs.d/lisp/bandali-misc.el +++ b/.emacs.d/lisp/bandali-misc.el @@ -108,8 +108,13 @@ (require 'debian-copyright) (require 'readme-debian)) -;; `eat' -(b/keymap-global-set "C-c e a t" #'eat) +(with-eval-after-load 'eat + (setopt + eat-enable-shell-prompt-annotation nil)) +(add-hook + 'eat-mode-hook + (lambda () (display-fill-column-indicator-mode -1))) +(b/keymap-global-set "C-c s e" #'eat) ;; `embark' (b/keymap-global-set "C-c ." #'embark-act) |