Added IRC config to emacs

This commit is contained in:
Random936 2023-12-19 14:27:53 -08:00
parent ad9c8cb112
commit cf1443f936

View File

@ -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.