diff options
-rw-r--r-- | doom.d/config.el | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/doom.d/config.el b/doom.d/config.el index 82e4b4c..a840f0b 100644 --- a/doom.d/config.el +++ b/doom.d/config.el @@ -58,10 +58,13 @@ ;; -------------------- (global-set-key (kbd "C-c s") 'mrl/switch-to-scratch) (global-set-key (kbd "C-c r") 'counsel-rg) +(global-set-key (kbd "C-c f") 'counsel-fzf) +(global-unset-key (kbd "C-x C-b")) ;; we don't want the old buffer list! ;; Basic agenda stuff (after! org + (evil-set-initial-state 'org-capture-mode 'insert) ;; from https://www.reddit.com/r/emacs/comments/hzkyrb/org_capture_evil_go_into_insert_mode/ (setq org-directory "~/org/") (setq org-startup-indented nil) (setq org-hide-leading-stars nil) @@ -208,7 +211,7 @@ ("hN" "Home Note" entry (file+headline "~/org/home.org" "Notes") "** %?\nEntered on %U\n") ("hj" "Journal" entry (file+olp+datetree "~/org/home.org" "Journal") - "** %?\nEntered on %U\n") + "* %?\nEntered on %U\n") ("hi" "Home Idea" entry (file+headline "~/org/home.org" "Notes") "** %? :idea:\nEntered on %U\n") ("hc" "Home Calendar - Single" entry (file+headline "~/org/home.org" "Calendar") @@ -229,7 +232,7 @@ ("wr" "Note from Region" entry (file+headline "~/org/mod.org" "Notes") "* %?\n\t\n%i") ("wj" "Journal" entry (file+olp+datetree "~/org/mod.org" "Journal") - "** %?\nEntered on %U\n") + "* %?\nEntered on %U\n") ("wd" "Retrospective Tasks" entry (file+headline "~/org/mod.org" "Tasks") "* DONE %?\nCLOSED: %U") ("ws" "Work Calendar - Single" entry (file+headline "~/org/mod.org" "Calendar") |