diff options
Diffstat (limited to 'init.el')
-rw-r--r-- | init.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/init.el b/init.el index 6cb9593..e17917b 100644 --- a/init.el +++ b/init.el | |||
@@ -301,6 +301,7 @@ | |||
301 | (when (boundp 'erc-autojoin-channels-alist) | 301 | (when (boundp 'erc-autojoin-channels-alist) |
302 | (mapcar #'car erc-autojoin-channels-alist)) | 302 | (mapcar #'car erc-autojoin-channels-alist)) |
303 | erc-server-coding-system '(utf-8 . utf-8) | 303 | erc-server-coding-system '(utf-8 . utf-8) |
304 | erc-timestamp-intangible t | ||
304 | erc-track-exclude-types (append erc-hide-list | 305 | erc-track-exclude-types (append erc-hide-list |
305 | '("AWAY" | 306 | '("AWAY" |
306 | "353" "324" "329" "332" "333" "477")) | 307 | "353" "324" "329" "332" "333" "477")) |
@@ -828,6 +829,10 @@ like a dumbass." | |||
828 | set-mark-command-repeat-pop t | 829 | set-mark-command-repeat-pop t |
829 | ) | 830 | ) |
830 | 831 | ||
832 | (when (fboundp 'command-completion-default-include-p) | ||
833 | (setq read-extended-command-predicate | ||
834 | #'command-completion-default-include-p)) | ||
835 | |||
831 | (:global "M-=" count-words | 836 | (:global "M-=" count-words |
832 | "C-w" kill-region-or-backward-word | 837 | "C-w" kill-region-or-backward-word |
833 | "<help> h" nil ; HELLO takes a long time to load on Windows | 838 | "<help> h" nil ; HELLO takes a long time to load on Windows |