feat(emacs): eminence

This commit is contained in:
Pavel Korytov 2021-07-10 19:43:37 +03:00
parent 2c3505505f
commit e298ab4c66
2 changed files with 8 additions and 2 deletions

View file

@ -2652,7 +2652,10 @@ then it takes a second \\[keyboard-quit] to abort the minibuffer."
(use-package elcord
:straight t
:if (and (string= (system-name) "indigo") (not my/slow-ssh))
:if (and (or
(string= (system-name) "indigo")
(string= (system-name) "eminence"))
(not my/slow-ssh))
:config
(elcord-mode))

View file

@ -3994,7 +3994,10 @@ Shows which file is being edited in Emacs.
#+begin_src emacs-lisp
(use-package elcord
:straight t
:if (and (string= (system-name) "indigo") (not my/slow-ssh))
:if (and (or
(string= (system-name) "indigo")
(string= (system-name) "eminence"))
(not my/slow-ssh))
:config
(elcord-mode))
#+end_src