diff options
Diffstat (limited to 'init.el')
-rw-r--r-- | init.el | 20 |
1 files changed, 5 insertions, 15 deletions
diff --git a/init.el b/init.el index fc5927e..aaa73f6 100644 --- a/init.el +++ b/init.el | |||
@@ -45,6 +45,9 @@ | |||
45 | (expand-file-name-exists-p "pkg/" user-emacs-directory))) | 45 | (expand-file-name-exists-p "pkg/" user-emacs-directory))) |
46 | (normal-top-level-add-subdirs-to-load-path)) | 46 | (normal-top-level-add-subdirs-to-load-path)) |
47 | 47 | ||
48 | ;;;; Private stuff | ||
49 | (require 'acdw-private) | ||
50 | |||
48 | 51 | ||
49 | ;;;; Utility functions and variables | 52 | ;;;; Utility functions and variables |
50 | ;; see also: `acdw' and friends. Functions here aren't big enough, or they're | 53 | ;; see also: `acdw' and friends. Functions here aren't big enough, or they're |
@@ -66,10 +69,7 @@ | |||
66 | 69 | ||
67 | (setup acdw | 70 | (setup acdw |
68 | (:option user-full-name "Case Duckworth" | 71 | (:option user-full-name "Case Duckworth" |
69 | user-mail-address "acdw@acdw.net" | 72 | user-mail-address "acdw@acdw.net")) |
70 | calendar-location-name "Baton Rouge, LA" | ||
71 | calendar-latitude 30.4 | ||
72 | calendar-longitude -91.1)) | ||
73 | 73 | ||
74 | (setup (:require auth-source) | 74 | (setup (:require auth-source) |
75 | (:option auth-sources '("~/.authinfo" "~/.authinfo.gpg"))) | 75 | (:option auth-sources '("~/.authinfo" "~/.authinfo.gpg"))) |
@@ -259,15 +259,6 @@ | |||
259 | erc-auto-discard-away t | 259 | erc-auto-discard-away t |
260 | erc-autoaway-idle-seconds 600 | 260 | erc-autoaway-idle-seconds 600 |
261 | erc-autoaway-message "BRB (autoaway: %i seconds)" | 261 | erc-autoaway-message "BRB (autoaway: %i seconds)" |
262 | erc-autojoin-channels-alist '(("libera.chat" | ||
263 | "#emacs" "##webpals" | ||
264 | "#erc") | ||
265 | ("tilde.chat" | ||
266 | "#meta" "#team" "#gemini" | ||
267 | "#bread" ; how could I've forgotten!? | ||
268 | "#politics" "#bungame" | ||
269 | "#dadjokes" "#tilderadio" | ||
270 | "#tilderadio-djs")) | ||
271 | erc-button-url-regexp browse-url-button-regexp | 262 | erc-button-url-regexp browse-url-button-regexp |
272 | erc-common-server-suffixes '(("tilde.chat\\'" . "~") | 263 | erc-common-server-suffixes '(("tilde.chat\\'" . "~") |
273 | ("libera.chat\\'" . "LC")) | 264 | ("libera.chat\\'" . "LC")) |
@@ -283,8 +274,7 @@ | |||
283 | erc-nick "acdw" | 274 | erc-nick "acdw" |
284 | erc-prompt (lambda () (concat (buffer-name) ">")) | 275 | erc-prompt (lambda () (concat (buffer-name) ">")) |
285 | erc-prompt-for-password nil ; use ~/.authinfo | 276 | erc-prompt-for-password nil ; use ~/.authinfo |
286 | erc/servers '("irc.libera.chat" | 277 | erc/servers (mapcar #'car erc-autojoin-channels-alist) |
287 | "irc.tilde.chat") | ||
288 | erc-server-coding-system '(utf-8 . utf-8) | 278 | erc-server-coding-system '(utf-8 . utf-8) |
289 | erc-track-exclude-types erc-hide-list | 279 | erc-track-exclude-types erc-hide-list |
290 | erc-track-position-in-mode-line 'before-modes) | 280 | erc-track-position-in-mode-line 'before-modes) |