Update erc settings
This commit is contained in:
parent
b7d626ac6c
commit
a3e8512ff1
1 changed files with 24 additions and 9 deletions
|
@ -1,14 +1,25 @@
|
|||
(defun mk/start-irc (nick)
|
||||
(interactive "sTell me your nick please: ")
|
||||
(erc-tls :server "irc.libera.chat"
|
||||
:port 6697
|
||||
:nick nick
|
||||
:full-name "Jay Edgar Hoover"))
|
||||
|
||||
(use-package erc
|
||||
:defer t
|
||||
:hook (erc-mode . emojify-mode)
|
||||
:custom
|
||||
(erc-track-exclude '("#emacs"))
|
||||
(erc-track-exclude-types '("JOIN" "NICK" "QUIT" "MODE" "AWAY"))
|
||||
(erc-hide-list '("JOIN" "NICK" "QUIT" "MODE" "AWAY"))
|
||||
(erc-track-exclude-server-buffer t)
|
||||
(erc-fill-column 80)
|
||||
(erc-fill-function 'erc-fill-static)
|
||||
(erc-fill-static-center 20)
|
||||
(erc-prompt-for-nickserv-password nil)
|
||||
(erc-track-shorten-start 8)
|
||||
(erc-auto-query 'bury)
|
||||
(erc-hide-list '("JOIN" "PART" "QUIT"))
|
||||
(erc-network-hide-list '(("libera.chat" "JOIN" "PART" "QUIT")))
|
||||
(erc-rename-buffers t)
|
||||
(erc-image-inline-rescale 300)
|
||||
(erc-interpret-mirc-color t)
|
||||
(erc-kill-buffer-on-part t)
|
||||
(erc-kill-queries-on-quit t)
|
||||
|
@ -31,9 +42,13 @@
|
|||
truncate ; Truncate buffers to a certain size
|
||||
)))
|
||||
|
||||
(defun start-irc (nick)
|
||||
(interactive "sTell me your nick please: ")
|
||||
(erc-tls :server "irc.libera.chat"
|
||||
:port 6697
|
||||
:nick nick
|
||||
:full-name "J. Edgar Hoover"))
|
||||
(use-package erc-hl-nicks
|
||||
:after erc
|
||||
:config
|
||||
(add-to-list 'erc-modules 'hl-nicks))
|
||||
|
||||
(use-package erc-image
|
||||
:after erc
|
||||
:config
|
||||
(setq erc-image-inline-rescale 300)
|
||||
(add-to-list 'erc-modules 'image))
|
||||
|
|
Loading…
Add table
Reference in a new issue