summaryrefslogtreecommitdiff
path: root/conf/km-mail.el
diff options
context:
space:
mode:
Diffstat (limited to 'conf/km-mail.el')
-rw-r--r--conf/km-mail.el15
1 files changed, 0 insertions, 15 deletions
diff --git a/conf/km-mail.el b/conf/km-mail.el
deleted file mode 100644
index 7a48417..0000000
--- a/conf/km-mail.el
+++ /dev/null
@@ -1,15 +0,0 @@
-(add-to-list 'auto-mode-alist '("/mutt" . mail-mode))
-
-(defun km/mail-position ()
- "Move cursor to first blank line
-and position cursor between two blank lines"
- (interactive)
- (forward-paragraph)
- (insert "\n\n")
- (previous-line))
-
-(defun km/mail-mode-hook ()
- (auto-fill-mode 1)
- (km/mail-position))
-
-(add-hook 'mail-mode-hook 'km/mail-mode-hook)