Browse Source

org src edit now in current window

master
Marc 4 years ago
parent
commit
a14fdfc293
1 changed files with 14 additions and 13 deletions
  1. 27
      init.org

27
init.org

@ -253,19 +253,20 @@ Some windows specific stuff
* orgmode * orgmode
** org ** org
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(use-package org
:ensure org-plus-contrib
:init
(add-hook 'org-mode-hook 'company/org-mode-hook)
:config
;; (require 'org-id)
(add-to-list 'org-modules "org-id")
(setq org-default-notes-file (concat MY--PATH_ORG_FILES "notes.org")
org-agenda-files (list MY--PATH_ORG_FILES
MY--PATH_ORG_FILES_MOBILE)
org-id-locations-file (concat MY--PATH_USER_LOCAL ".org-id-locations")
org-log-into-drawer "LOGBOOK"))
(org-id-update-id-locations)
(use-package org
:ensure org-plus-contrib
:init
(add-hook 'org-mode-hook 'company/org-mode-hook)
:config
;; (require 'org-id)
(add-to-list 'org-modules "org-id")
(setq org-default-notes-file (concat MY--PATH_ORG_FILES "notes.org")
org-agenda-files (list MY--PATH_ORG_FILES
MY--PATH_ORG_FILES_MOBILE)
org-id-locations-file (concat MY--PATH_USER_LOCAL ".org-id-locations")
org-log-into-drawer "LOGBOOK")
(setq org-src-window-setup 'current-window)) ;; C-c ' opens in current window
(org-id-update-id-locations)
#+END_SRC #+END_SRC
** habits ** habits
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp

Loading…
Cancel
Save