summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.emacs12
1 files changed, 9 insertions, 3 deletions
diff --git a/.emacs b/.emacs
index 8fe48cd..d095907 100644
--- a/.emacs
+++ b/.emacs
@@ -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