diff options
author | Thanos Apollo <[email protected]> | 2024-04-08 18:01:04 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2024-04-08 18:01:04 +0300 |
commit | 6dcc368bed390737e77647e45cbbeffc3b3731eb (patch) | |
tree | 22016c3c103e5839feb311e36a9c756f2e45e252 | |
parent | 177a31e36712f54cc10b7a029bde5f5c97d6b614 (diff) |
emacs:(erc) Update modules
-rw-r--r-- | .emacs.d/init.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 72f4cd7..4eefc0b 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -637,10 +637,13 @@ (use-package erc :defer t :config + (unless (expand-file-name "erc" user-emacs-directory) + (make-directory (expand-file-name "erc" user-emacs-directory))) (setf erc-modules '(sasl netsplit fill button match track completion readonly networks ring autojoin noncommands irccontrols move-to-prompt stamp - menu list)) + menu list log notifications) + erc-log-channels-directory (expand-file-name "erc" user-emacs-directory)) :bind (("C-c E" . 'erc-libera) :map erc-mode-map ("C-c RET" . 'erc-cmd-QUERY))) |