aboutsummaryrefslogtreecommitdiffstats
path: root/GNUmakefile
diff options
context:
space:
mode:
authorGravatar Tom Willemse2026-06-15 17:02:56 -0700
committerGravatar Tom Willemse2026-06-15 17:02:56 -0700
commita50c3f3916a986230b9c2a1f602b6021e902e372 (patch)
tree13e3c141f85164711491e3e132c66f50ba25fcbd /GNUmakefile
parent0bf0883bef0d10fa0f198bb3938f59d7a9236e8c (diff)
downloadnew-dotfiles-a50c3f3916a986230b9c2a1f602b6021e902e372.tar.gz
new-dotfiles-a50c3f3916a986230b9c2a1f602b6021e902e372.zip
wezterm: Replace Lua config with Fennel
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile11
1 files changed, 10 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile
index ed30f60..f15fd99 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -132,7 +132,14 @@ nyxt: nyxt/.config/nyxt/init.lisp
%.elc: %.el
@printf "\e[36mELC\e[0m %s\n" $<
- $(EMACS) -q -batch -f package-initialize -f batch-byte-compile $<
+ @$(EMACS) -q -batch -f package-initialize -f batch-byte-compile $<
+
+%.fnl: %.org
+ $(call tangle,fennel)
+
+%.lua: %.fnl
+ @printf "\e[32mFNL\e[0m %s\n" $<
+ @fennel --compile $^ > $@
%: %.org
$(call tangle)
@@ -171,6 +178,8 @@ brew-install: _mbsetupuser/Brewfile
before-_mbsetupuser-install: _mbsetupuser/.emacs.d/init.elc
+before-wezterm-install: wezterm/.config/wezterm/wezterm.lua
+
_mbsetupuser/.config/zsh/conf.d/postgresql.sh: _mbsetupuser/Brewfile
$(call tangle,shell)