diff options
author | 2020-10-20 21:03:51 -0400 | |
---|---|---|
committer | 2020-10-20 21:03:51 -0400 | |
commit | 5df344632add107633464336c536331eaec68953 (patch) | |
tree | 830223b067e6075e52e261d0b381103cea7ce6cb /.emacs.d | |
parent | 8e7b3f4871395cee04cd50b50a2d7013c73ed210 (diff) | |
download | configs-5df344632add107633464336c536331eaec68953.tar.gz configs-5df344632add107633464336c536331eaec68953.tar.xz configs-5df344632add107633464336c536331eaec68953.zip |
A few small uncommitted changes
Diffstat (limited to '.emacs.d')
-rw-r--r-- | .emacs.d/init.el | 2 | ||||
-rw-r--r-- | .emacs.d/lisp/bandali-erc.el | 4 | ||||
-rw-r--r-- | .emacs.d/lisp/bandali-gnus.el | 2 | ||||
-rw-r--r-- | .emacs.d/lisp/bandali-message.el | 3 |
4 files changed, 8 insertions, 3 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 0dccfff..26259eb 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -901,7 +901,7 @@ Make N (default: 1) copies of the current line or region." (defconst yas-verbosity-cur yas-verbosity) (setq yas-verbosity 2) (csetq yas-snippet-dirs `(,(b/etc "yasnippet/snippets"))) - (add-to-list 'yas-snippet-dirs "~/src/git/guix/etc/snippets" t) + ;; (add-to-list 'yas-snippet-dirs "~/src/git/guix/etc/snippets" t) (yas-reload-all) (setq yas-verbosity yas-verbosity-cur) diff --git a/.emacs.d/lisp/bandali-erc.el b/.emacs.d/lisp/bandali-erc.el index 3b6d0d0..dd04abe 100644 --- a/.emacs.d/lisp/bandali-erc.el +++ b/.emacs.d/lisp/bandali-erc.el @@ -96,8 +96,8 @@ erc-pal-highlight-type 'nick erc-pals '("aindilis" "blackbeard" "bremner" "brettgilio" "civodul" "dto" - "ggoes" "iank" "jrasata" "mplsCorwin" "quidam" "rwp" "sudoman" - "technomancy")) + "ggoes" "iank" "jrasata" "mplsCorwin" "quidam" "rwp" "sachac" + "sudoman" "technomancy")) (with-eval-after-load 'erc-match (set-face-attribute 'erc-pal-face nil diff --git a/.emacs.d/lisp/bandali-gnus.el b/.emacs.d/lisp/bandali-gnus.el index 1958793..bdcc501 100644 --- a/.emacs.d/lisp/bandali-gnus.el +++ b/.emacs.d/lisp/bandali-gnus.el @@ -65,6 +65,8 @@ ;; (: gnus-group-split-fancy "INBOX" t "INBOX") ;; keep debbugs emails in INBOX (list ".*<\\(.*\\)\\.debbugs\\.gnu\\.org>.*" "INBOX") + ;; list moderation emails + (from ".+-\\(owner\\|bounces\\)@\\(non\\)?gnu\\.org" "listmod") ;; gnu (list ".*<\\(.*\\)\\.\\(non\\)?gnu\\.org>.*" "l.\\1") ;; gnus diff --git a/.emacs.d/lisp/bandali-message.el b/.emacs.d/lisp/bandali-message.el index c13bffc..49b8a98 100644 --- a/.emacs.d/lisp/bandali-message.el +++ b/.emacs.d/lisp/bandali-message.el @@ -117,6 +117,9 @@ (eval-when-compile (defvar company-idle-delay)) (make-local-variable 'company-idle-delay) (setq company-idle-delay 0.2))) +(add-hook 'message-mode-hook + (lambda () + (local-unset-key (kbd "C-c C-s")))) ;; (with-eval-after-load 'message-x ;; (csetq |