Compare commits
4 Commits
5fee719f82
...
a3659a8ca5
Author | SHA1 | Date |
---|---|---|
coolneng | a3659a8ca5 | |
coolneng | 6ae9a4da84 | |
coolneng | bdc40e3f79 | |
coolneng | bfef58394d |
|
@ -11,3 +11,7 @@
|
|||
(map! :leader :n "o e" #'=rss)
|
||||
;; Map wallabag to global keybinding
|
||||
(map! :leader :n "o w" #'=wallabag)
|
||||
;; Keybindings for org-noter
|
||||
(map! :mode org-noter
|
||||
:n "i" #'org-noter-insert-note
|
||||
:desc "Insert note with a subheading")
|
||||
|
|
7
+org.el
7
+org.el
|
@ -46,6 +46,7 @@
|
|||
;; Enter writeroom-mode in all org files
|
||||
(add-hook 'org-mode-hook 'global-writeroom-mode)
|
||||
(setq writeroom-major-modes '(org-mode))
|
||||
(add-hook 'org-mode-hook 'visual-line-mode)
|
||||
;; Respect LANGUAGE export variable
|
||||
(add-to-list 'org-latex-packages-alist '("AUTO" "babel" t ("pdflatex")))
|
||||
;; Don't evaluate code blocks on export
|
||||
|
@ -131,5 +132,7 @@
|
|||
;; Configure a better split and some default for org-noter
|
||||
(after! org-noter
|
||||
(setq org-noter-always-create-frame nil
|
||||
org-noter-doc-split-fraction '(0.7 . 0.3))
|
||||
org-noter-default-notes-file-names '("~/Notes/Logosyllogi.org"))
|
||||
org-noter-doc-split-fraction '(0.7 . 0.3)
|
||||
org-noter-default-heading-title " "))
|
||||
;; Increase the latex preview size
|
||||
(setq org-format-latex-options (plist-put org-format-latex-options :scale 3.0))
|
||||
|
|
Loading…
Reference in New Issue