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.

minor cosmetics

sspaeti 0195643b 601359fe

+21 -11
+17 -10
README.md
··· 20 20 21 21 ## Screenshots 22 22 23 - YouTube rundown of most features: 24 - [![neomd demo](https://img.youtube.com/vi/lpmHqIrCC-w/maxresdefault.jpg)](https://youtu.be/lpmHqIrCC-w) 25 - ### Overview 23 + ### Overview: List-View 26 24 27 25 Feed view with all Newsletters - also workflow with differnt tabs and unread counter only for certain tabs (not all): 28 26 ![neomd](images/overview-email-feed.png) ··· 34 32 ![neomd](images/reading-email.png) 35 33 36 34 ### Sent emails 37 - 38 - ![neomd](images/sent-email.png) 39 - 40 - Or in Gmail: 41 - ![neomd](images/gmail.png) 42 - 43 35 This is the markdown sent: 44 36 45 37 ```markdown ··· 60 52 Best regards 61 53 ``` 62 54 63 - Compose emails in your editor, read them rendered with [glamour](https://github.com/charmbracelet/glamour), and manage your inbox with a [HEY-style screener](https://www.hey.com/features/the-screener/) — all from the terminal. 55 + *Compose emails in your editor, read them rendered with [glamour](https://github.com/charmbracelet/glamour), and manage your inbox with a [HEY-style screener](https://www.hey.com/features/the-screener/) — all from the terminal.* 56 + 57 + 58 + Which looks like this: 59 + 60 + ![neomd](images/sent-email.png) 61 + 62 + Or in Gmail: 63 + ![neomd](images/gmail.png) 64 + 65 + 66 + ### Video 67 + 68 + YouTube rundown of most features: 69 + [![neomd demo](https://img.youtube.com/vi/lpmHqIrCC-w/maxresdefault.jpg)](https://youtu.be/lpmHqIrCC-w) 70 + 64 71 65 72 ## Features 66 73
+3 -1
docs/configuration.md
··· 70 70 signature = """**Your Name** 71 71 Your Title, Your Company 72 72 73 - Connect: [LinkedIn](https://example.com/)""" 73 + Connect: [LinkedIn](https://example.com/) 74 + 75 + *sent from [neomd](https://neomd.ssp.sh)*""" 74 76 ``` 75 77 76 78 > **Gmail users:** Gmail uses different IMAP folder names (`[Gmail]/Sent Mail`, `[Gmail]/Trash`, etc.). See [Gmail Configuration](gmail.md) for the correct mapping.
+1
internal/config/config.go
··· 331 331 Theme: "dark", 332 332 InboxCount: 50, 333 333 BgSyncInterval: 5, 334 + Signature: "*sent from [neomd](https://neomd.ssp.sh)*", 334 335 }, 335 336 } 336 337 }