A minimal email TUI where you read with Markdown and write in Neovim. neomd.ssp.sh/docs
email markdown neovim tui
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

images

sspaeti 51c27fa6 0e284c61

+6 -17
-17
.claude/settings.local.json
··· 1 - { 2 - "permissions": { 3 - "allow": [ 4 - "Bash(go build:*)", 5 - "Bash(go test:*)", 6 - "Bash(make build:*)", 7 - "Bash(make test:*)", 8 - "WebFetch(domain:www.ssp.sh)", 9 - "Bash(make docs-build:*)", 10 - "Bash(hugo version:*)", 11 - "Bash(hugo mod graph:*)", 12 - "Bash(make docs-sync:*)", 13 - "WebFetch(domain:raw.githubusercontent.com)", 14 - "Bash(./scripts/sync-readme-to-docs.sh:*)" 15 - ] 16 - } 17 - }
+2
.gitignore
··· 18 18 # OS 19 19 .DS_Store 20 20 .codex 21 + 22 + .claude/
+4
docs/hugo.yaml
··· 4 4 # Base URL will be set by GitHub Actions 5 5 baseURL: "https://ssp-data.github.io/neomd/" 6 6 7 + # Canonify all absolute URLs (prepends baseURL to /images/, /docs/, etc.) 8 + # Required for GitHub Pages project sites (not user/org sites) 9 + canonifyURLs: true 10 + 7 11 # Disable RSS generation to avoid template issues 8 12 disableKinds: ["RSS"] 9 13