diff options
author | 2020-11-22 00:20:17 -0500 | |
---|---|---|
committer | 2020-11-22 00:20:17 -0500 | |
commit | adba94a76d9411bc52b04bfb9b442f4c6c21c285 (patch) | |
tree | e775a66938b611dbe1d34f3ad9ab2079f9d8c336 /.emacs.d/lisp/bandali-erc.el | |
parent | b0d54e4ea8219eaefe380b67365f0384ad280e36 (diff) | |
download | configs-adba94a76d9411bc52b04bfb9b442f4c6c21c285.tar.gz configs-adba94a76d9411bc52b04bfb9b442f4c6c21c285.tar.xz configs-adba94a76d9411bc52b04bfb9b442f4c6c21c285.zip |
A few accumulated changes
Diffstat (limited to '.emacs.d/lisp/bandali-erc.el')
-rw-r--r-- | .emacs.d/lisp/bandali-erc.el | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/.emacs.d/lisp/bandali-erc.el b/.emacs.d/lisp/bandali-erc.el index dd04abe..ed27df3 100644 --- a/.emacs.d/lisp/bandali-erc.el +++ b/.emacs.d/lisp/bandali-erc.el @@ -60,7 +60,8 @@ "Deop myself from current channel." (erc-cmd-DEOP (format "%s" (erc-current-nick)))) (add-to-list 'erc-modules 'keep-place) - (add-to-list 'erc-modules 'notifications) + (when (display-graphic-p) + (add-to-list 'erc-modules 'notifications)) (add-to-list 'erc-modules 'smiley) (add-to-list 'erc-modules 'spelling) (declare-function erc-update-modules "erc") @@ -95,9 +96,9 @@ (csetq erc-pal-highlight-type 'nick erc-pals - '("aindilis" "blackbeard" "bremner" "brettgilio" "civodul" "dto" - "ggoes" "iank" "jrasata" "mplsCorwin" "quidam" "rwp" "sachac" - "sudoman" "technomancy")) + '("aindilis" "blackbeard" "bremner" "~brettgilio?@*" "civodul" + "dto" "ggoes" "iank" "jrasata" "mplsCorwin" "quidam" "rwp" + "sachac" "sudoman" "technomancy")) (with-eval-after-load 'erc-match (set-face-attribute 'erc-pal-face nil @@ -107,7 +108,7 @@ :background (face-attribute 'font-lock-string-face :background))) ;; erc-pcomplete - (csetq erc-pcomplete-nick-postfix ", ") + (csetq erc-pcomplete-nick-postfix ",") ;; erc-stamp (csetq erc-timestamp-only-if-changed-flag nil |