diff --git a/init/text/misc.el b/init/text/misc.el index 75002e2..21ddfbb 100644 --- a/init/text/misc.el +++ b/init/text/misc.el @@ -1,6 +1,6 @@ ;;; misc.el --- Miscellaneous file formats. -*- lexical-binding: t; -*- -;; Time-stamp: <2019-11-25T05:29:41+00:00> +;; Time-stamp: <2019-11-29T00:56:17+00:00> ;;; Commentary: @@ -124,5 +124,20 @@ ;; Insert dummy pseudo Latin text. (use-package lorem-ipsum) +;; Document editing, formatting, and organizing mode. +(use-package org + :bind + (:map org-mode-map ; Remove some annoying keybindings. + ("M-" . nil) + ("M-" . nil) + ("M-" . nil) + ("M-" . nil) + ("S-" . nil) + ("S-" . nil) + ("C-S-" . nil) + ("C-S-" . nil) + ) + ) + (provide 'text/misc) ;;; misc.el ends here