do not tangle embark as already loaded by crafted emacs

This commit is contained in:
Peter Tillemans 2024-10-23 11:52:07 +02:00
parent 390257afed
commit 72819450bf

View file

@ -163,7 +163,6 @@ metadata and get the version number from the JSON.
#+RESULTS:
: v1.2024.6
* Crafted Emacs
#+BEGIN_SRC emacs-lisp
@ -355,7 +354,6 @@ It provides a minor-mode
#+RESULTS:
: [nil 26285 20099 685413 nil elpaca-process-queues nil nil 626000 nil]
* Editor Features
#+BEGIN_SRC emacs-lisp
@ -738,6 +736,25 @@ Emacs' direnv module gives first class support to Emacs projects so they use the
This enables direnv globally.
** Configure Embark
Currently already loaded by crafted emacs
#+BEGIN_SRC emacs-lisp :tangle no
(use-package embark
:ensure t
:bind
(("C-m" . embark-act)
("C-;" . embark-dwim)
("C-h B" . embark-bindings))
:config
(setq prefix-help-command #'embark-prefix-help-command))
#+END_SRC
#+RESULTS:
: [nil 26384 64829 513923 nil elpaca-process-queues nil nil 691000 nil]
* Writing and Planning
#+BEGIN_SRC emacs-lisp
@ -2050,11 +2067,18 @@ Set up ERC, an IRC client for Emacs, to automatically join specific channels and
(setq erc-autojoin-channels-alist
'(('znc
"#emacs" "#erc" "#spritely" "#guix"
"#systemcrafters" "#systemcrafters-guix" "#systemcrafters-emacs"))))
"#systemcrafters" "#systemcrafters-guix" "#systemcrafters-emacs")))
(custom-set-variables
'(erc-fool-highlight-type 'all)
'(erc-fools '("Marvin2"))
'(erc-keyword-highlight-type 'all)
'(erc-pal-highlight-type 'all)
'(erc-pals '("Fade" "daviwil" "alternateved" "trev" "talos" "dthompson"))
'(erc-prompt-for-password nil)))
#+END_SRC
#+RESULTS:
: t
: [nil 26384 63712 203392 nil elpaca-process-queues nil nil 785000 nil]
Setup all channels which are joined by default.