Compare commits

...

3 Commits

3 changed files with 10 additions and 2 deletions

View File

@ -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")

View File

@ -132,5 +132,5 @@
;; 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 " "))

View File

@ -119,3 +119,7 @@
(magit-delta-mode))
;; Set up the mail stack
(after! mu4e (load! "+mail"))
;; HACK Enable AOT native compilation
(setq native-comp-deferred-compilation nil)
(after! (doom-packages straight)
(setq straight--native-comp-available t))