diff --git a/.emacs.d/config.org b/.emacs.d/config.org index 0963b40..e1b4e50 100644 --- a/.emacs.d/config.org +++ b/.emacs.d/config.org @@ -191,8 +191,7 @@ Command Log Mode creates a window that logs all commands and corresponding keybi :init (persp-mode)) #+end_src - -*** Vertico +** Vertico Vertico is a package that implements a drop-down like menu in the mini buffer allowing for much better searching. @@ -219,8 +218,6 @@ One last feature I will also add is the ~marginalia~ package which adds some nic (marginalia-mode)) #+end_src - - * Cosmetic Packages that change the look of Emacs in some way. @@ -482,6 +479,30 @@ This hides all dotfiles in dired with the keybinding ~H~. "H" 'dired-hide-dotfiles-mode)) #+end_src +* ERC + +ERC is a builtin package that adds IRC chatting functionality to emacs. + +#+begin_src emacs-lisp + +; Basic autofill information +(setq erc-nick "random936") + +; Cosmetic config +(setq erc-fill-column 120 + erc-fill-function 'erc-fill-static + erc-fill-static-center 20 + erc-kill-buffer-on-part t) +#+end_src + +To highlight each nickname with a different color, I can use the ~erc-hl-nicks~ package. + +#+begin_src emacs-lisp +(use-package erc-hl-nicks + :after erc + :config (add-to-list 'erc-modules 'hl-nicks) +#+end_src + * Import Other Files This is the section to include imports from other files.