Move erc settings
This commit is contained in:
parent
a6410697d2
commit
3d8ebfc0be
2 changed files with 23 additions and 10 deletions
|
@ -70,16 +70,6 @@
|
|||
|
||||
(defun start-irc (nick)
|
||||
(interactive "sTell me your nick please: ")
|
||||
(setq 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
|
||||
erc-autojoin-channels-alist '(("libera.chat" "#emacs"))
|
||||
erc-interpret-mirc-color t
|
||||
erc-modules '(autojoin button completion fill irccontrols list match menu move-to-prompt netsplit networks noncommands notifications readonly ring stamp track truncate))
|
||||
(erc-tls :server "irc.libera.chat"
|
||||
:port 6697
|
||||
:nick nick
|
||||
|
|
|
@ -265,3 +265,26 @@
|
|||
(use-package slime-company
|
||||
:after (slime company)
|
||||
:config (setq slime-company-after-completion 'slime-company-just-one-space))
|
||||
|
||||
(use-package erc
|
||||
:config
|
||||
(setq 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
|
||||
erc-autojoin-channels-alist '(("libera.chat" "#emacs" "#commonlisp"))
|
||||
erc-interpret-mirc-color t
|
||||
erc-modules '(autojoin button completion fill irccontrols list match menu move-to-prompt netsplit networks noncommands notifications readonly ring stamp track truncate)))
|
||||
|
||||
(use-package erc-image
|
||||
:after erc
|
||||
:config
|
||||
(setq erc-image-inline-rescale 300)
|
||||
(add-to-list 'erc-modules 'image))
|
||||
|
||||
(use-package emojify
|
||||
:hook (erc-mode . emojify-mode)
|
||||
:commands emojify-mode)
|
||||
|
|
Loading…
Add table
Reference in a new issue