summaryrefslogtreecommitdiff
path: root/init
diff options
context:
space:
mode:
authorKyle Meyer <meyerkya@gmail.com>2013-07-01 15:32:23 -0400
committerKyle Meyer <meyerkya@gmail.com>2013-07-01 15:32:23 -0400
commit2183d6c14f2c748e994e8c4ac2869c6a66b3af9c (patch)
tree09b7b25769a1097d978a43bbe35635206d3b532e /init
parente0fde7a6762191a36785731faf1753f383e603ba (diff)
downloademacs.d-2183d6c14f2c748e994e8c4ac2869c6a66b3af9c.tar.gz
remove old mail setup
Diffstat (limited to 'init')
-rw-r--r--init/km-mail.el13
1 files changed, 0 insertions, 13 deletions
diff --git a/init/km-mail.el b/init/km-mail.el
deleted file mode 100644
index 461af07..0000000
--- a/init/km-mail.el
+++ /dev/null
@@ -1,13 +0,0 @@
-(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)