diff options
| author | 2026-06-15 17:02:56 -0700 | |
|---|---|---|
| committer | 2026-06-15 17:02:56 -0700 | |
| commit | a50c3f3916a986230b9c2a1f602b6021e902e372 (patch) | |
| tree | 13e3c141f85164711491e3e132c66f50ba25fcbd /GNUmakefile | |
| parent | 0bf0883bef0d10fa0f198bb3938f59d7a9236e8c (diff) | |
| download | new-dotfiles-a50c3f3916a986230b9c2a1f602b6021e902e372.tar.gz new-dotfiles-a50c3f3916a986230b9c2a1f602b6021e902e372.zip | |
wezterm: Replace Lua config with Fennel
Diffstat (limited to 'GNUmakefile')
| -rw-r--r-- | GNUmakefile | 11 |
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) |
