(Emacs)~org core -> OC Config, OC Bindings and OC variables
Big org block is better in smaller blocks
This commit is contained in:
@@ -1447,10 +1447,9 @@ use the current buffer?) but it works out.
|
|||||||
"M-g" #'pdfgrep))
|
"M-g" #'pdfgrep))
|
||||||
#+end_src
|
#+end_src
|
||||||
** Org
|
** Org
|
||||||
*** Core
|
*** Org Core Configuration
|
||||||
Setup for org mode, currently nothing. Has evil-org for evil bindings.
|
Hooks, prettify-symbols and my =+org/swiper-goto= to replace the
|
||||||
|
vanilla =org-goto=
|
||||||
Also setup a lot of variables, particularly for latex exports.
|
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(use-package org
|
(use-package org
|
||||||
:hook
|
:hook
|
||||||
@@ -1469,11 +1468,22 @@ Also setup a lot of variables, particularly for latex exports.
|
|||||||
(interactive)
|
(interactive)
|
||||||
(swiper "^\\* "))
|
(swiper "^\\* "))
|
||||||
(general-def
|
(general-def
|
||||||
[remap org-goto] #'+org/swiper-goto))
|
[remap org-goto] #'+org/swiper-goto)))
|
||||||
|
#+end_src
|
||||||
|
*** Org Core Bindings
|
||||||
|
Some bindings for org mode.
|
||||||
|
#+begin_src emacs-lisp
|
||||||
|
(use-package org
|
||||||
|
:general
|
||||||
(general-def
|
(general-def
|
||||||
:states 'normal
|
:states 'normal
|
||||||
:keymaps 'org-mode-map
|
:keymaps 'org-mode-map
|
||||||
"C-c ;" #'org-property-action)
|
"C-c ;" #'org-property-action))
|
||||||
|
#+end_src
|
||||||
|
*** Org Core Variables
|
||||||
|
Tons of variables for org-mode, including a ton of latex ones.
|
||||||
|
#+begin_src emacs-lisp
|
||||||
|
(use-package org
|
||||||
:custom
|
:custom
|
||||||
(org-edit-src-content-indentation 0)
|
(org-edit-src-content-indentation 0)
|
||||||
(org-goto-interface 'outline)
|
(org-goto-interface 'outline)
|
||||||
@@ -1511,7 +1521,10 @@ Also setup a lot of variables, particularly for latex exports.
|
|||||||
("breaklines" "true")
|
("breaklines" "true")
|
||||||
("breakanywhere" "true")
|
("breakanywhere" "true")
|
||||||
)))
|
)))
|
||||||
|
#+end_src
|
||||||
|
*** Evil Org
|
||||||
|
Evil org for some nice bindings.
|
||||||
|
#+begin_src emacs-lisp
|
||||||
(use-package evil-org
|
(use-package evil-org
|
||||||
:hook (org-mode-hook . evil-org-mode))
|
:hook (org-mode-hook . evil-org-mode))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|||||||
Reference in New Issue
Block a user