diff options
| -rw-r--r-- | .emacs | 12 |
1 files changed, 9 insertions, 3 deletions
@@ -694,7 +694,8 @@ (use-package erc :custom - (erc-log-channels-directory "~/.irc-logs") + (erc-log-channels-directory + (concat user-emacs-directory "erc/logs")) (erc-log-write-after-insert t) (erc-log-write-after-send t) (erc-notifications-icon @@ -706,8 +707,13 @@ (erc-use-auth-source-for-nickserv-password t) (erc-user-full-name 'user-full-name) :config - (my/setopt erc-modules (my/list-update erc-modules - '(log notifications) '(fill)))) + (my/setopt + erc-modules + (my/list-update erc-modules + '(log notifications) '(fill)) + erc-track-exclude-types + (my/list-update erc-track-exclude-types + '("JOIN" "PART" "QUIT")))) (use-package icomplete :config |
