commit 9618127140252979e04d8468215b417203d0cd0d
parent 901cca16cd855d4c5806b5e738918b83c5091ac5
Author: Cem Keylan <cem@ckyln.com>
Date: Fri, 20 Mar 2020 14:15:44 +0300
Merge branch 'master' of git.ckyln.com:emacs.d
Diffstat:
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/init.org b/init.org
@@ -217,6 +217,7 @@ We didn't ask for the keybindings yet, because we are going to get the
#+BEGIN_SRC emacs-lisp
(use-package evil-collection
+ :requires evil
:after evil
:ensure t
:config
@@ -230,6 +231,7 @@ do the job well for me.
#+BEGIN_SRC emacs-lisp
(use-package evil-surround
+ :requires evil
:after evil
:ensure t
:config
@@ -247,6 +249,7 @@ for me. These are my configurations. Starting with the obvious here.
:functions org-babel-tangle
:init
'(require 'ox-md nil t)
+'(require 'ox-man nil t)
'(org-export-backends
(quote
(ascii beamer html latex man md groff))))
@@ -259,7 +262,8 @@ I am quite serious on this vim stuff now. I want it everywhere.
#+BEGIN_SRC emacs-lisp
(use-package evil-org
:ensure t
- :after org
+ :requires (evil org)
+ :after (evil org)
:functions evil-org-agenda-set-keys
:config
(add-hook 'org-mode-hook 'evil-org-mode)
@@ -305,7 +309,7 @@ along with it.
#+BEGIN_SRC emacs-lisp
(use-package evil-magit
:ensure t
- :after (evil magit)
+ :requires (evil magit)
:config (evil-magit-init))
#+END_SRC