diff options
-rw-r--r-- | spacemacs.el | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/spacemacs.el b/spacemacs.el index 997cd06..8f58660 100644 --- a/spacemacs.el +++ b/spacemacs.el @@ -586,6 +586,8 @@ This is the place where most of your configurations should be done. Unless it is "." 'spacemacs/jump-to-definition "," 'tide-jump-back) + (global-evil-mc-mode) + ;; https://github.com/syl20bnr/spacemacs/issues/774 (unless (file-exists-p (concat spacemacs-cache-directory "undo")) (make-directory (concat spacemacs-cache-directory "undo"))) @@ -664,9 +666,9 @@ This is the place where most of your configurations should be done. Unless it is undo-tree-history-directory-alist `(("." . ,(concat spacemacs-cache-directory "undo"))) ;; org-mode - ;;; Taken from: - ;;; - http://cachestocaches.com/2016/9/my-workflow-org-agenda - ;;; - http://doc.norang.ca/org-mode.html +;;; Taken from: +;;; - http://cachestocaches.com/2016/9/my-workflow-org-agenda +;;; - http://doc.norang.ca/org-mode.html org-todo-keywords '((sequence "TODO" "NEXT" "WAITING" "INACTIVE" "CANCELLED" "MEETING" "DOING" "|" "DONE")) org-agenda-files '("~/Nextcloud/txt/TODOs.org") org-columns-default-format "%50ITEM(Task) %10CLOCKSUM %16TIMESTAMP_IA" |