add reply all key binding for mutt

This commit is contained in:
Julin S 2021-09-28 11:34:22 +05:30
parent cf2a0ed0c1
commit 0af1a2f8e4
2 changed files with 24 additions and 1 deletions

View File

@ -13,7 +13,12 @@
(setq ring-bell-function 'ignore)
;
;; Enable word wrap
(setq-default word-wrap t)
;(setq-default word-wrap t)
;
;; Wrap long lines
; https://www.gnu.org/software/emacs/manual/html_node/emacs/Visual-Line-Mode.html
; http://ergoemacs.org/emacs/emacs_long_line_wrap.html
(global-visual-line-mode 1)
;
;; Scroll buffer without moving cursor
; https://www.emacswiki.org/emacs/Scrolling#h5o-2
@ -68,6 +73,9 @@
(require 'evil)
(evil-mode t)
;
;; Make :q not quit entire emacs and just try to delete current split
(evil-ex-define-cmd "q[uit]" 'evil-window-delete )
;
;; Vim digraphs
(load-file "~/.config/emacs/digraphs.el")
@ -89,6 +97,11 @@
(setq org-todo-keywords
'((sequence "TODO" "|" "DONE" "NODO")))
;
;; Set the colours of the state names
; https://orgmode.org/manual/Faces-for-TODO-keywords.html
(setq org-todo-keyword-faces
'(("NODO" . "dark red")))
;
;; Save clock history across Emacs sessions
; https://orgmode.org/manual/Clocking-Work-Time.html
(setq org-clock-persist 'history)
@ -100,6 +113,11 @@
;
;; Set agenda files for org-agenda
(setq org-agenda-files (quote ("~/today/agenda.org" "~/org.org")))
;
;; Open pdf in external pdf-viewer
; https://emacs.stackexchange.com/questions/28037/org-mode-file-hyperlinks-always-use-doc-view-cant-force-it-to-use-external-pdf
; Now C-c C-o will open evince and C-u C-u C-c C-o will open docview
(add-to-list 'org-file-apps '("pdf" . "evince %s"))
;;; Added with Custom

View File

@ -76,8 +76,13 @@ set smtp_url = "smtps://my@domain@smtp-domain/"
# IMAP connections
set imap_keepalive = 300
# Fetch new mail
bind index "^" imap-fetch-mail
# Reply all
bind index,pager A group-reply
# Amount of time in seconds after which mutt checks for new mail
set mail_check = 5