Load markdown-mode on .md files

This commit is contained in:
nemunaire 2015-01-15 11:22:08 +01:00
parent 94a175e4ba
commit 6efad95dba
2 changed files with 4 additions and 1 deletions

View File

@ -28,3 +28,6 @@
(define-key global-map "\C-cl" 'org-store-link)
(define-key global-map "\C-ca" 'org-agenda)
(setq org-log-done t)
;; Markdown-mode
(add-to-list 'auto-mode-alist '("\\.md$" . markdown-mode))

View File

@ -29,7 +29,7 @@
(defun toc:load-config-file (filelist)
(dolist (file filelist)
(message "Loading config file: %s..." file)
(load (expand-file-name
(load (expand-file-name
(concat toc:emacs-config-dir file)))
))