dot-emacs

My emacs dotfiles/config
git clone git://git.ethandl.dev/dot-emacs
Log | Files | Refs

commit 79e9266d00296b712ae75603dec86774386e19c1
parent ba9fbf6795f35b5cce4f85aebf461342c891156e
Author: Ethan Long <me@ethandl.dev>
Date:   Fri, 19 Jun 2026 13:02:48 +1000

Fixed non-MacOS platforms

Tangle cannot have nil as an argument, needed "no" to specify no tangle.

Diffstat:
Mconfig.org | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/config.org b/config.org @@ -450,7 +450,7 @@ This is the place to check if you're getting any strange bugs or different behav ** MacOS *** The menu bar Because the menu bar exists regardless on MacOS, I like to keep ~menu-bar-mode~ enabled. -#+begin_src emacs-lisp :tangle (if (eq system-type 'darwin) "platform-config/darwin.el") +#+begin_src emacs-lisp :tangle (if (eq system-type 'darwin) "platform-config/darwin.el" "no") (menu-bar-mode 1) #+end_src ** Including your platforms