A minimal email TUI where you read with Markdown and write in Neovim.
neomd.ssp.sh/docs
email
markdown
neovim
tui
1.PHONY: serve build clean help
2
3.DEFAULT_GOAL := serve
4
5## serve: serve Hugo docs site locally at http://localhost:1313
6serve:
7 @echo "Starting Hugo development server..."
8 hugo server -D --port 1311
9
10## build: build Hugo docs site to public/
11build:
12 @echo "Building Hugo docs site..."
13 hugo --gc --minify
14
15## clean: remove generated files
16clean:
17 @echo "Cleaning generated files..."
18 rm -rf public resources .hugo_build.lock
19
20## help: print this list
21help:
22 @grep -E '^## ' Makefile | sed 's/^## //'