summaryrefslogtreecommitdiffstats
path: root/.emacs.d/lisp
diff options
context:
space:
mode:
authorAmin Bandali <bandali@gnu.org>2021-05-15 20:04:21 -0400
committerAmin Bandali <bandali@gnu.org>2021-05-15 20:14:07 -0400
commitbc04a4d40544c77d163d6497f3863b9b566d64d4 (patch)
treed0329a249504ea3737ec01a81f23b0a0f4c96a80 /.emacs.d/lisp
parent41fb7da0e9da05c0d1cf7bb58c918b69d48adf65 (diff)
downloadconfigs-bc04a4d40544c77d163d6497f3863b9b566d64d4.tar.gz
configs-bc04a4d40544c77d163d6497f3863b9b566d64d4.tar.xz
configs-bc04a4d40544c77d163d6497f3863b9b566d64d4.zip
migrate from ebdb to a simple ~/.mailrc
also automatically expand aliases when going to the next line or jumping to the end of buffer in message-mode.
Diffstat (limited to '.emacs.d/lisp')
-rw-r--r--.emacs.d/lisp/bandali-ebdb.el53
-rw-r--r--.emacs.d/lisp/bandali-gnus.el5
-rw-r--r--.emacs.d/lisp/bandali-message.el5
3 files changed, 6 insertions, 57 deletions
diff --git a/.emacs.d/lisp/bandali-ebdb.el b/.emacs.d/lisp/bandali-ebdb.el
deleted file mode 100644
index cc8d577..0000000
--- a/.emacs.d/lisp/bandali-ebdb.el
+++ /dev/null
@@ -1,53 +0,0 @@
-;;; bandali-ebdb.el --- bandali's EBDB configuration -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2018-2021 Amin Bandali
-
-;; Author: Amin Bandali <bandali@gnu.org>
-;; Keywords: tools
-
-;; This program is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; This program is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with this program. If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; My EBDB setup.
-
-;;; Code:
-
-(with-eval-after-load 'gnus
- (require 'ebdb)
- (csetq ebdb-sources (b/var "ebdb"))
- (with-eval-after-load 'swiper
- (add-to-list 'swiper-font-lock-exclude #'ebdb-mode t))
- ;; local key bindings
- (define-key gnus-group-mode-map (kbd "e") #'ebdb))
-
-(with-eval-after-load 'ebdb
- (with-eval-after-load 'ebdb-complete
- ;; (csetq ebdb-complete-mail 'capf)
- (csetq ebdb-completion-display-record nil) ; <87pn2kk2ig.fsf@ericabrahamsen.net>
- (ebdb-complete-enable))
-
- (require 'ebdb-message)
-
- (require 'ebdb-gnus)
- (csetq ebdb-gnus-window-size 0.3)
-
- (require 'ebdb-mua)
- (csetq ebdb-mua-pop-up nil))
-
-;; (with-eval-after-load 'company-ebdb
-;; (defun company-ebdb--post-complete (_) nil))
-
-(provide 'bandali-ebdb)
-;;; bandali-ebdb.el ends here
diff --git a/.emacs.d/lisp/bandali-gnus.el b/.emacs.d/lisp/bandali-gnus.el
index 337e620..15f5bd5 100644
--- a/.emacs.d/lisp/bandali-gnus.el
+++ b/.emacs.d/lisp/bandali-gnus.el
@@ -334,9 +334,8 @@ jami:bandali")
(with-eval-after-load 'gnus-group
(csetq gnus-permanently-visible-groups "\\(:INBOX$\\|:gnu$\\)"))
-;; problematic with ebdb's popup, *EBDB-Gnus*
-;; (with-eval-after-load 'gnus-win
-;; (csetq gnus-use-full-window nil))
+(with-eval-after-load 'gnus-win
+ (csetq gnus-use-full-window nil))
(with-eval-after-load 'gnus-dired
(add-hook 'dired-mode-hook 'gnus-dired-mode))
diff --git a/.emacs.d/lisp/bandali-message.el b/.emacs.d/lisp/bandali-message.el
index 5952b52..c66a669 100644
--- a/.emacs.d/lisp/bandali-message.el
+++ b/.emacs.d/lisp/bandali-message.el
@@ -61,7 +61,6 @@
'(gnus-find-subscribed-addresses)
message-dont-reply-to-names
"\\(\\(amin@shemshak\\.org\\)\\|\\(.*@aminb\\.org\\)\\|\\(\\(bandali\\|mab\\|aminb?\\)@gnu\\.org\\)\\|bandali@fsf\\.org\\|\\(a?bandali@\\(csclub\\.\\)?uwaterloo\\.ca\\)\\|amin\\.bandali@savoirfairelinux\\.com\\)")
- ;; (require 'company-ebdb)
;; (custom-set-faces
;; '(message-header-subject
;; ((t (:foreground "#111" :weight semi-bold))))
@@ -104,6 +103,10 @@ non-nil."
(kbd "M-RET") #'b/message-newline-or-asterism)
;; local key bindings
+ (define-key message-mode-map
+ [remap next-line] #'mail-abbrev-next-line)
+ (define-key message-mode-map
+ [remap end-of-buffer] #'mail-abbrev-end-of-buffer)
(defvar b/footnote-prefix-map)
(define-prefix-command 'b/footnote-prefix-map)
(define-key message-mode-map (kbd "C-c f n")