- ⬇️ Filename Heading Sync by dvcrn ^[Obsidian plugin for keeping the filename with the first heading of a file in sync]
- ⬇️ Emoji Shortcodes by phibr0 ♡ ^[This Plugin enables the use of Markdown Emoji Shortcodes 😄]
- ⬇️ Homepage by novov ♡ ^[Open a specified note, canvas, base, or workspace on startup, or set it for quick access later.]
- ⬇️ Calendar by
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| TimerWidget { | |
| layout: horizontal; | |
| height: 5; | |
| background: $panel-darken-1; | |
| border: tall $panel-darken-2; | |
| margin: 1; | |
| padding: 0 1; | |
| transition: background 200ms linear; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Install IPython: python3 -m pip install ipython | |
| import IPython | |
| from traitlets.config import get_config | |
| cfg = get_config() | |
| cfg.InteractiveShellEmbed.colors = "Linux" # syntax highlighting | |
| cfg.InteractiveShellEmbed.confirm_exit = False | |
| alias interacti IPython.embed(config=cfg) |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | 🎉 :tada: |
| Version tag | 🔖 :bookmark: |
| New feature | ✨ :sparkles: |
| Bugfix | 🐛 :bug: |