Skip to content

Commit

Permalink
emacs: add org-drill
Browse files Browse the repository at this point in the history
  • Loading branch information
SqrtMinusOne committed Jul 10, 2024
1 parent 4a65300 commit a650360
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 6 deletions.
9 changes: 6 additions & 3 deletions .emacs.d/init.el
Original file line number Diff line number Diff line change
Expand Up @@ -4915,6 +4915,11 @@ TODO Write something, maybe? "))))
"t" #'org-timeblock-todo-set
"q" #'quit-window))

(use-package org-drill
:straight t
:commands (org-drill)
:after (org))

(use-package ox-hugo
:straight t
:if (not my/remote-server)
Expand Down Expand Up @@ -5184,9 +5189,7 @@ TODO Write something, maybe? "))))
(dired-recent-mode)
(general-define-key
:keymaps 'dired-recent-mode-map
"C-x C-d" nil)
(my-leader-def
"aD" '(dired-recent-open :wk "dired history")))
"C-x C-d" nil))

(use-package all-the-icons-dired
:straight t
Expand Down
13 changes: 10 additions & 3 deletions Emacs.org
Original file line number Diff line number Diff line change
Expand Up @@ -6791,6 +6791,15 @@ An example contact entry can look like this:
"t" #'org-timeblock-todo-set
"q" #'quit-window))
#+end_src
*** org-drill
Trying to learn stuff with this.

#+begin_src emacs-lisp
(use-package org-drill
:straight t
:commands (org-drill)
:after (org))
#+end_src

** Export
*** Hugo
Expand Down Expand Up @@ -7237,9 +7246,7 @@ I used to use [[https://www.emacswiki.org/emacs/DiredPlus][dired+]], which provi
(dired-recent-mode)
(general-define-key
:keymaps 'dired-recent-mode-map
"C-x C-d" nil)
(my-leader-def
"aD" '(dired-recent-open :wk "dired history")))
"C-x C-d" nil))
#+end_src

Display icons for files.
Expand Down

0 comments on commit a650360

Please sign in to comment.