Emacs config utilizing prelude as a base
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
# Prelude ERC
## Customizing Server list
If you want to join a list of servers on `M-x start-irc`, other thanthe default list, please redefine the variable `my-fav-irc` as followsin your personal config
```emacs-lisp(setq my-fav-irc '("irc.freenode.net" "irc.oftc.net" "irc.mozilla.org" "irc.gnome.org"))```
## Customizing Last Quit Message
If you want to customize your IRC Last Quit Message from *Asta lavista* to something more funkier, please redefine `bye-irc-message` asfollows
```emacs-lisp(setq bye-erc-message "adios")```
## Reading NickServ passwords from auth-source plugin
If you want to automatically authenticate while logging into IRCservers set the `erc-prompt-for-password` to nil as follows
```emacs-lisp(setq erc-prompt-for-password nil)```
Now you can set password in plaintext in .authinfo file in the netRCformat or you it encrypted in .authinfo.gpg file after setting up gpgin emacs
## Opening all ERC buffers in a new perspective
Many a time when we start IRC with the `start-irc` command, all thechannels open in our existing workspace, which can be annoying tosome; especially to those who like to organize their buffers intoseparate groups (perspectives). To avoid this scenario, it is betterto group all the ERC buffers into one perspective called `IRC` when`start-irc` is called. To enable this set the `prelude-new-irc-persp`variable to true as follows
```emacs-lisp(setq prelude-new-irc-persp t)```
|