diff options
Diffstat (limited to '.emacs.d')
-rw-r--r-- | .emacs.d/init.el | 4 | ||||
-rw-r--r-- | .emacs.d/modes/init-org-mode.el | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 8ed2a78..1d345b6 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -86,7 +86,9 @@ ("\\.md\\'" . markdown-mode) ("\\.markdown\\'" . markdown-mode)) :init - (setq markdown-command "multimarkdown")) + (setq markdown-command "multimarkdown") + (evil-define-key 'normal markdown-mode-map + (kbd "<RET>") 'markdown-follow-link-at-point)) (use-package exec-path-from-shell :if (memq window-system '(mac ns)) diff --git a/.emacs.d/modes/init-org-mode.el b/.emacs.d/modes/init-org-mode.el index f402902..31cf3e2 100644 --- a/.emacs.d/modes/init-org-mode.el +++ b/.emacs.d/modes/init-org-mode.el @@ -26,7 +26,9 @@ (kbd "<leader>c") 'org-capture) (evil-define-key 'normal org-mode-map (kbd "TAB") 'org-cycle - (kbd "RET") 'org-open-at-point) + (kbd "RET") 'org-open-at-point + (kbd "<leader>os") 'org-schedule + (kbd "<leader>od") 'org-deadline) ;; todo (setq org-todo-keywords |