Fix indentation

This commit is contained in:
Marcus Kammer 2023-10-04 16:23:56 +02:00
parent ca595f428b
commit ef9784a375

View file

@ -1,37 +1,35 @@
(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-rename-buffers t)
(erc-autojoin-channels-alist '(("libera.chat" "#emacs"))) (erc-image-inline-rescale 300)
(erc-rename-buffers t) (erc-interpret-mirc-color t)
(erc-image-inline-rescale 300) (erc-kill-buffer-on-part t)
(erc-interpret-mirc-color t) (erc-kill-queries-on-quit t)
(erc-kill-buffer-on-part t) (erc-kill-server-buffer-on-quit t)
(erc-kill-queries-on-quit t) (erc-modules
(erc-kill-server-buffer-on-quit t) '(autojoin ; Set away status automatically
(erc-modules button ; Join channels automatically
'(autojoin ; Set away status automatically completion ; Complete nicknames and commands (programmable)
button ; Join channels automatically fill ; Wrap long lines
completion ; Complete nicknames and commands (programmable) irccontrols ; Highlight or remove IRC control characters
fill ; Wrap long lines match ; Highlight pals, fools, and other keywords
irccontrols ; Highlight or remove IRC control characters menu ; Display a menu in ERC buffers
match ; Highlight pals, fools, and other keywords netsplit ; Detect netsplits
menu ; Display a menu in ERC buffers noncommands ; Dont display non-IRC commands after evaluation
netsplit ; Detect netsplits readonly ; Make displayed lines read-only
noncommands ; Dont display non-IRC commands after evaluation ring ; Enable an input history
readonly ; Make displayed lines read-only services ; Identify to Nickserv (IRC Services) automatically
ring ; Enable an input history smiley ; Convert smileys to pretty icons
services ; Identify to Nickserv (IRC Services) automatically stamp ; Add timestamps to messages
smiley ; Convert smileys to pretty icons truncate ; Truncate buffers to a certain size
stamp ; Add timestamps to messages )))
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: ")