.emacs 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. ;; Package Repositories
  2. (setq package-archives '(("gnu" . "https://elpa.gnu.org/packages/")
  3. ("melpa" . "https://melpa.org/packages/")
  4. ("org" . "http://orgmode.org/elpa/"))) ;org-mode repository
  5. ;; Don't delete this line. This must come before configuration of installed packages.
  6. (package-initialize)
  7. ;; Internet Relay Chat configuration for
  8. ;; RCIRC Client
  9. ;; Change user info
  10. (setq rcirc-default-nick "stretchp")
  11. (setq rcirc-default-user-name "pat")
  12. (setq rcirc-default-full-name "patrick pippen")
  13. ;; Authiencate
  14. (setq rcirc-authinfo
  15. '(("freenode" nickserv "stretchp" "nyteg0d")))
  16. (custom-set-variables
  17. ;; custom-set-variables was added by Custom.
  18. ;; If you edit it by hand, you could mess it up, so be careful.
  19. ;; Your init file should contain only one such instance.
  20. ;; If there is more than one, they won't work right.
  21. '(package-selected-packages (quote (magit))))
  22. (custom-set-faces
  23. ;; custom-set-faces was added by Custom.
  24. ;; If you edit it by hand, you could mess it up, so be careful.
  25. ;; Your init file should contain only one such instance.
  26. ;; If there is more than one, they won't work right.
  27. )