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:
parent
03ac9f5f18
commit
8e307716d9
@ -73,12 +73,13 @@
|
||||
|
||||
** Font
|
||||
#+begin_src emacs-lisp
|
||||
;; 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")
|
||||
|
||||
;; Variable pitch face
|
||||
;; Variable pitch face
|
||||
(set-face-attribute 'variable-pitch nil :font "Cantarell")
|
||||
#+end_src
|
||||
|
||||
@ -95,7 +96,7 @@
|
||||
:custom (doom-modeline-height 15))
|
||||
#+end_src
|
||||
|
||||
* Keyboard Bindings
|
||||
|
||||
** Escape Cancels All
|
||||
#+begin_src emacs-lisp
|
||||
(global-set-key (kbd "<escape>") '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
|
||||
|
Loading…
Reference in New Issue
Block a user