emacs.d/bundle/bundle--irc.el

39 lines
1 KiB
EmacsLisp
Raw Normal View History

2021-12-15 14:05:13 +01:00
(use-package erc
2022-05-06 19:31:15 +02:00
:defer t
2021-12-16 09:43:35 +01:00
:hook (erc-mode . emojify-mode)
2021-12-15 14:05:13 +01:00
:custom
(erc-track-shorten-start 8)
(erc-kill-buffer-on-part t)
(erc-auto-query 'bury)
(erc-hide-list '("JOIN" "PART" "QUIT"))
(erc-network-hide-list '(("irc.libera.chat" "JOIN" "PART" "QUIT")))
(erc-channel-hide-list '(("#emacs" "JOIN" "PART" "QUIT")))
(erc-rename-buffers t)
2022-05-15 19:28:51 +02:00
(erc-image-inline-rescale 300)
2021-12-15 14:05:13 +01:00
(erc-interpret-mirc-color t)
(erc-modules '(autojoin
button
completion
fill
irccontrols
list
match
menu
move-to-prompt
netsplit
networks
noncommands
readonly
ring
stamp
track
2022-05-15 19:28:51 +02:00
image
2021-12-15 14:05:13 +01:00
truncate)))
(defun start-irc (nick)
(interactive "sTell me your nick please: ")
(erc-tls :server "irc.libera.chat"
:port 6697
:nick nick
:full-name "emacs-user"))