Fix intendation

This commit is contained in:
Marcus Kammer 2023-09-07 08:40:43 +02:00
parent b621d7d2f9
commit 2fd1e5ae1a

View file

@ -1,37 +1,37 @@
(use-package erc (use-package erc
:defer t :defer t
:hook (erc-mode . emojify-mode) :hook (erc-mode . emojify-mode)
:custom :custom
(erc-prompt-for-nickserv-password nil) (erc-prompt-for-nickserv-password nil)
(erc-track-shorten-start 8) (erc-track-shorten-start 8)
(erc-auto-query 'bury) (erc-auto-query 'bury)
(erc-hide-list '("JOIN" "PART" "QUIT")) (erc-hide-list '("JOIN" "PART" "QUIT"))
(erc-network-hide-list '(("libera.chat" "JOIN" "PART" "QUIT"))) (erc-network-hide-list '(("libera.chat" "JOIN" "PART" "QUIT")))
(erc-channel-hide-list '(("#emacs" "JOIN" "PART" "QUIT"))) (erc-channel-hide-list '(("#emacs" "JOIN" "PART" "QUIT")))
(erc-autojoin-channels-alist '(("libera.chat" "#emacs"))) (erc-autojoin-channels-alist '(("libera.chat" "#emacs")))
(erc-rename-buffers t) (erc-rename-buffers t)
(erc-image-inline-rescale 300) (erc-image-inline-rescale 300)
(erc-interpret-mirc-color t) (erc-interpret-mirc-color t)
(erc-kill-buffer-on-part t) (erc-kill-buffer-on-part t)
(erc-kill-queries-on-quit t) (erc-kill-queries-on-quit t)
(erc-kill-server-buffer-on-quit t) (erc-kill-server-buffer-on-quit t)
(erc-modules (erc-modules
'(autojoin ; Set away status automatically '(autojoin ; Set away status automatically
button ; Join channels automatically button ; Join channels automatically
completion ; Complete nicknames and commands (programmable) completion ; Complete nicknames and commands (programmable)
fill ; Wrap long lines fill ; Wrap long lines
irccontrols ; Highlight or remove IRC control characters irccontrols ; Highlight or remove IRC control characters
match ; Highlight pals, fools, and other keywords match ; Highlight pals, fools, and other keywords
menu ; Display a menu in ERC buffers menu ; Display a menu in ERC buffers
netsplit ; Detect netsplits netsplit ; Detect netsplits
noncommands ; Dont display non-IRC commands after evaluation noncommands ; Dont display non-IRC commands after evaluation
readonly ; Make displayed lines read-only readonly ; Make displayed lines read-only
ring ; Enable an input history ring ; Enable an input history
services ; Identify to Nickserv (IRC Services) automatically services ; Identify to Nickserv (IRC Services) automatically
smiley ; Convert smileys to pretty icons smiley ; Convert smileys to pretty icons
stamp ; Add timestamps to messages stamp ; Add timestamps to messages
truncate ; Truncate buffers to a certain size truncate ; Truncate buffers to a certain size
))) )))
(defun start-irc (nick) (defun start-irc (nick)
(interactive "sTell me your nick please: ") (interactive "sTell me your nick please: ")