Difference between revisions of "ERC"

From WikEmacs
Jump to navigation Jump to search
m
Line 9: Line 9:
  
 
= Basic setup =
 
= Basic setup =
 +
 +
<source lang="lisp">
 +
(eval-after-load "erc"
 +
  '(progn
 +
 +
    ;; Set personal information
 +
    (set 'erc-nick "defaultnick")
 +
    (set 'erc-user-full-name "My Full Name")))
 +
</source>
  
 
= Helpful keybindings =
 
= Helpful keybindings =

Revision as of 18:18, 2 April 2012

ERC
Description IRC in Emacs
Author name of author
Maintainer name of maintainer
Source http://savannah.gnu.org/projects/erc/
Part of Emacs yes, since 22.1

ERC is an Internet Relay Chat (IRC) client built into Emacs.

Basic setup

(eval-after-load "erc"
  '(progn

     ;; Set personal information
     (set 'erc-nick "defaultnick")
     (set 'erc-user-full-name "My Full Name")))

Helpful keybindings

Common customization

See also

Project pages