do not tangle embark as already loaded by crafted emacs
This commit is contained in:
parent
390257afed
commit
72819450bf
1 changed files with 28 additions and 4 deletions
32
init.org
32
init.org
|
@ -163,7 +163,6 @@ metadata and get the version number from the JSON.
|
||||||
#+RESULTS:
|
#+RESULTS:
|
||||||
: v1.2024.6
|
: v1.2024.6
|
||||||
|
|
||||||
|
|
||||||
* Crafted Emacs
|
* Crafted Emacs
|
||||||
|
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
@ -355,7 +354,6 @@ It provides a minor-mode
|
||||||
#+RESULTS:
|
#+RESULTS:
|
||||||
: [nil 26285 20099 685413 nil elpaca-process-queues nil nil 626000 nil]
|
: [nil 26285 20099 685413 nil elpaca-process-queues nil nil 626000 nil]
|
||||||
|
|
||||||
|
|
||||||
* Editor Features
|
* Editor Features
|
||||||
|
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+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.
|
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
|
* Writing and Planning
|
||||||
|
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+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
|
(setq erc-autojoin-channels-alist
|
||||||
'(('znc
|
'(('znc
|
||||||
"#emacs" "#erc" "#spritely" "#guix"
|
"#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
|
#+END_SRC
|
||||||
|
|
||||||
#+RESULTS:
|
#+RESULTS:
|
||||||
: t
|
: [nil 26384 63712 203392 nil elpaca-process-queues nil nil 785000 nil]
|
||||||
|
|
||||||
Setup all channels which are joined by default.
|
Setup all channels which are joined by default.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue