1
0
mirror of https://github.com/alrayyes/dotfiles/ synced 2023-11-14 15:56:30 +00:00

feat(emacs): configured org-agenda

This commit is contained in:
Ryan Kes 2021-05-14 19:39:21 +02:00
parent 03ac9f5f18
commit 8e307716d9

View File

@ -73,12 +73,13 @@
** Font ** Font
#+begin_src emacs-lisp #+begin_src emacs-lisp
;; Default pitch face
(set-face-attribute 'default nil :font "JetBrainsMono Nerd Font") (set-face-attribute 'default nil :font "JetBrainsMono Nerd Font")
;; Fixed pitch face ;; 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 ;; Variable pitch face
(set-face-attribute 'variable-pitch nil :font "Cantarell") (set-face-attribute 'variable-pitch nil :font "Cantarell")
#+end_src #+end_src
@ -95,7 +96,7 @@
:custom (doom-modeline-height 15)) :custom (doom-modeline-height 15))
#+end_src #+end_src
* Keyboard Bindings
** Escape Cancels All ** Escape Cancels All
#+begin_src emacs-lisp #+begin_src emacs-lisp
(global-set-key (kbd "<escape>") 'keyboard-escape-quit) (global-set-key (kbd "<escape>") 'keyboard-escape-quit)
@ -316,3 +317,9 @@
(use-package visual-fill-column (use-package visual-fill-column
:hook (org-mode . efs/org-mode-visual-fill)) :hook (org-mode . efs/org-mode-visual-fill))
#+end_src #+end_src
** Org Agenda
#+begin_src emacs-lisp
(setq
org-agenda-files (directory-files-recursively "~/Documents/org/" "\.org$"))
#+end_src