|
| 1 | +# Note ✍️ |
| 2 | + |
| 3 | +<p align="center"> |
| 4 | + <img src="docs/demo.gif" alt="Note Demo" style="width: 100%;"> |
| 5 | +</p> |
| 6 | + |
| 7 | +A modern terminal-based note-taking application built with [Bubble Tea](https://github.com/charmbracelet/bubbletea) and [Lip Gloss](https://github.com/charmbracelet/lipgloss). Organize your thoughts with style right from your terminal. |
| 8 | + |
| 9 | +## ✨ Features |
| 10 | + |
| 11 | +- 📝 Create and edit markdown notes |
| 12 | +- 🗂️ Organize notes in folders |
| 13 | +- 🎨 Beautiful TUI with syntax highlighting |
| 14 | +- 📱 Responsive layout with adjustable sidebar |
| 15 | +- 🗑️ Archive unused notes |
| 16 | +- ⌨️ Vim-style keybindings |
| 17 | +- 🎯 Focus mode without sidebar |
| 18 | +- 🔍 Preview markdown rendering |
| 19 | +- ⚡ Fast and lightweight |
| 20 | + |
| 21 | +## 📦 Installation |
| 22 | + |
| 23 | +### Using Homebrew (macOS & Linux) |
| 24 | + |
| 25 | +```bash |
| 26 | +brew tap armandsauzay/note |
| 27 | +brew install note |
| 28 | +``` |
| 29 | + |
| 30 | +### Using Go |
| 31 | + |
| 32 | +``` |
| 33 | +go install github.com/armandsauzay/note@latest |
| 34 | +``` |
| 35 | + |
| 36 | +### From Source |
| 37 | + |
| 38 | +``` |
| 39 | +git clone https://github.com/armandsauzay/note.git |
| 40 | +cd note |
| 41 | +go install |
| 42 | +``` |
| 43 | + |
| 44 | +## 🚀 Usage |
| 45 | + |
| 46 | +## ⚙️ Configuration |
| 47 | + |
| 48 | +### Keybindings |
| 49 | + |
| 50 | +- `j/k` or `↑/↓`: Navigate notes |
| 51 | +- `h/l` or `←/→`: Collapse/expand folders |
| 52 | +- `enter`: Edit note/rename folder |
| 53 | +- `n`: Create new note |
| 54 | +- `N`: Create new folder |
| 55 | +- `tab`: Toggle sidebar |
| 56 | +- `backspace`: Archive note/folder |
| 57 | +- `q` or `ctrl+c`: Quit |
| 58 | + |
| 59 | +## 🤝 Contributing |
| 60 | + |
| 61 | +Contributions are welcome! Please feel free to submit a Pull Request. |
| 62 | + |
| 63 | +1. Fork the repository |
| 64 | +2. Create your feature branch (`git checkout -b feature/amazing-feature`) |
| 65 | +3. Commit your changes (`git commit -m 'feat: add amazing feature'`) |
| 66 | +4. Push to the branch (`git push origin feature/amazing-feature`) |
| 67 | +5. Open a Pull Request |
| 68 | + |
| 69 | +## 📝 License |
| 70 | + |
| 71 | +This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details. |
| 72 | + |
| 73 | +## 🚧 Roadmap |
| 74 | + |
| 75 | +- [ ] Custom themes |
| 76 | +- [ ] Tags |
| 77 | +- [ ] Sorting notes |
| 78 | +- [ ] Search notes |
| 79 | +- [ ] Export notes |
0 commit comments