From 8e307716d96d531dff8679bdfc205df6d5760840 Mon Sep 17 00:00:00 2001 From: Ryan Kes <> Date: Fri, 14 May 2021 19:39:21 +0200 Subject: [PATCH] feat(emacs): configured org-agenda --- emacs/.emacs.d/config.org | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/emacs/.emacs.d/config.org b/emacs/.emacs.d/config.org index cebc48c..a8854ea 100644 --- a/emacs/.emacs.d/config.org +++ b/emacs/.emacs.d/config.org @@ -73,13 +73,14 @@ ** Font #+begin_src emacs-lisp - (set-face-attribute 'default nil :font "JetBrainsMono Nerd Font") + ;; Default pitch face + (set-face-attribute 'default nil :font "JetBrainsMono Nerd Font") ;; Fixed pitch face - (set-face-attribute 'fixed-pitch nil :font "JetBrainsMono Nerd Font") + (set-face-attribute 'fixed-pitch nil :font "JetBrainsMono Nerd Font") -;; Variable pitch face - (set-face-attribute 'variable-pitch nil :font "Cantarell") + ;; Variable pitch face + (set-face-attribute 'variable-pitch nil :font "Cantarell") #+end_src ** Icons @@ -95,7 +96,7 @@ :custom (doom-modeline-height 15)) #+end_src -* Keyboard Bindings + ** Escape Cancels All #+begin_src emacs-lisp (global-set-key (kbd "") 'keyboard-escape-quit) @@ -316,3 +317,9 @@ (use-package visual-fill-column :hook (org-mode . efs/org-mode-visual-fill)) #+end_src + +** Org Agenda +#+begin_src emacs-lisp + (setq + org-agenda-files (directory-files-recursively "~/Documents/org/" "\.org$")) +#+end_src