Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Could someone show what a sample emacs .erc-auth.el file would look like?

Tags:

emacs

The ERC Manual shows code for loading authentication information:

(load "~/.emacs.d/.erc-auth")

but does not show what that auth info would look like. I'd appreciate a sample file.

like image 246
Terrence Brannon Avatar asked Sep 23 '11 18:09

Terrence Brannon


1 Answers

This might help:

(defun my-erc ()
  (interactive)
  (setq erc-nick "MyNick")
  (setq erc-password "MyPass")
  (erc :server "irc.freenode.net" :port 6667 :nick erc-nick :password erc-password))
like image 194
BentFranklin Avatar answered Oct 29 '22 21:10

BentFranklin