(Emacs)-a few evil-collection setups
I can handle a few Emacs packages being with evil bindings, makes it easier to manage that way.
This commit is contained in:
@@ -433,8 +433,7 @@ on setups for specific modes I think benefit from it.
|
|||||||
(use-package evil-collection
|
(use-package evil-collection
|
||||||
:after evil
|
:after evil
|
||||||
:config
|
:config
|
||||||
(evil-collection-require 'dired)
|
(evil-collection-require 'dired))
|
||||||
(evil-collection-require 'proced))
|
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
** Completion
|
** Completion
|
||||||
@@ -1087,8 +1086,7 @@ integrate it into my workflow just a bit better.
|
|||||||
:config
|
:config
|
||||||
;; sync mail after refresh
|
;; sync mail after refresh
|
||||||
(advice-add #'notmuch-poll-and-refresh-this-buffer :before
|
(advice-add #'notmuch-poll-and-refresh-this-buffer :before
|
||||||
#'+mail/sync-mail)
|
#'+mail/sync-mail))
|
||||||
(evil-collection-notmuch-setup))
|
|
||||||
#+end_src
|
#+end_src
|
||||||
*** Smtpmail
|
*** Smtpmail
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
@@ -1358,10 +1356,7 @@ don't need to write everything myself.
|
|||||||
:after evil
|
:after evil
|
||||||
:general
|
:general
|
||||||
(leader
|
(leader
|
||||||
"bi" #'ibuffer)
|
"bi" #'ibuffer))
|
||||||
:config
|
|
||||||
(with-eval-after-load "evil-collection"
|
|
||||||
(evil-collection-ibuffer-setup)))
|
|
||||||
#+end_src
|
#+end_src
|
||||||
** Proced
|
** Proced
|
||||||
Proced is the process manager for Emacs. Just setup evil-collection
|
Proced is the process manager for Emacs. Just setup evil-collection
|
||||||
@@ -1372,9 +1367,6 @@ for it.
|
|||||||
:general
|
:general
|
||||||
(leader
|
(leader
|
||||||
"ap" #'proced)
|
"ap" #'proced)
|
||||||
:config
|
|
||||||
(with-eval-after-load "evil-collection"
|
|
||||||
(evil-collection-proced-setup)))
|
|
||||||
:display
|
:display
|
||||||
("\\*Proced\\*"
|
("\\*Proced\\*"
|
||||||
(display-buffer-at-bottom)
|
(display-buffer-at-bottom)
|
||||||
@@ -1396,10 +1388,7 @@ algebraic notation mode) and provides incredible utilities.
|
|||||||
(leader
|
(leader
|
||||||
"ac" #'calc)
|
"ac" #'calc)
|
||||||
:init
|
:init
|
||||||
(setq calc-algebraic-mode t)
|
(setq calc-algebraic-mode t))
|
||||||
:config
|
|
||||||
(with-eval-after-load "evil-collection"
|
|
||||||
(evil-collection-calc-setup)))
|
|
||||||
#+end_src
|
#+end_src
|
||||||
*** Calctex
|
*** Calctex
|
||||||
=calc-mode= also has a 3rd party package called =calctex=. It renders
|
=calc-mode= also has a 3rd party package called =calctex=. It renders
|
||||||
|
|||||||
Reference in New Issue
Block a user