diff options
author | fpi | 2020-10-06 11:31:34 +0200 |
---|---|---|
committer | fpi | 2020-10-09 12:36:17 +0200 |
commit | 13017cef0b63e4669ff1d3a039fd3380c8e404aa (patch) | |
tree | ef6fdc1c62e682d5424509cc6c4e8eba34c26dc7 | |
parent | Add spice-mode to auto-mode-alist (diff) |
Fix git-annex use-package call
Apparently :bind is called before :config
-rw-r--r-- | emacs-init.org | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/emacs-init.org b/emacs-init.org index 737c385..0b60ada 100644 --- a/emacs-init.org +++ b/emacs-init.org @@ -2374,10 +2374,12 @@ There are some great ressources on [[https://git-annex.branchable.com/][git-anne :straight t :config <<git-annex-config>> + :after (dired)) +(use-package git-annex :bind (:map git-annex-dired-map <<git-annex-dired-bindings>>) - :after (dired)) + ) #+end_src **** Actions to lock/unlock files #+begin_src emacs-lisp :tangle no :noweb-ref git-annex-dired-bindings |