Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/notable/notable-customizations
A repository containing a collection of interesting community-created customizations for Notable.
https://github.com/notable/notable-customizations
customizations notable
Last synced: about 1 month ago
JSON representation
A repository containing a collection of interesting community-created customizations for Notable.
- Host: GitHub
- URL: https://github.com/notable/notable-customizations
- Owner: notable
- Created: 2020-06-11T15:31:16.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-03-08T00:20:30.000Z (almost 2 years ago)
- Last Synced: 2024-10-30T11:42:13.742Z (about 2 months ago)
- Topics: customizations, notable
- Size: 12.7 KB
- Stars: 32
- Watchers: 8
- Forks: 7
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Notable Customizations
This repository contains a collection of interesting community-created customizations and tips for Notable.
Add your own interesting customization to this collection by submiting a pull request or sharing it in our [chat](https://chat.notable.app).
## Commands
List of interesting command usages.
- _No customizations yet_
## Context Keys
List of interesting context keys expressions.
- _No customizations yet_
## Custom CSS
List of interesting custom CSS snippets.
- _No customizations yet_
## Custom JS
List of interesting custom JavaScript snippets.
- [Markdown Calc](https://gist.github.com/kmccullen97/b7d54da28572c6a4156b051aa2eb0644) (turn static tables into spreadsheets)
## Settings
List of interesting settings configurations.
- _No customizations yet_
## Shortcuts
List of interesting custom shortcuts.
Paste clipboard content surrounded by code fence
```json
{
"shortcut": "Cmd+Shift+D",
"command": "macro",
"args": [
["editor.paste", ["```\n"]],
"editor.paste",
["editor.paste", ["\n```\n"]]
]
}
```Turn selection into code fence
```json
{
"shortcut": "Cmd+D",
"command": "macro",
"args": [
"editor.cut",
["editor.paste", ["```\n"]],
"editor.paste",
["editor.paste", ["\n```\n"]]
]
}
```Surround selected text with e.g. double-asterisks
```json
{
"shortcut": "Cmd+B",
"command": "macro",
"args": [
"editor.cut",
["editor.paste", ["**"]],
"editor.paste",
["editor.paste", ["**"]]
]
}
```Insert text at beginning of line, e.g. headers
```json
{
"shortcut": "Cmd+3",
"command": "macro",
"args": [
"editor.cursor.line.start",
["editor.paste", ["### "]]
]
}
```## Theming
List of interesting theming-related configurations.
- 3500+ different themes ported from VS Code are installable via the "Theme: Install..." command
## Other customizations
List of other interesting customizations, mainly involving third-party tools.
- Tags:
- [Autocomplete YAML tags from Vim](https://github.com/RyanGreenup/Note-Taking-Tools/blob/master/auto-complete-tags-vim/Auto-Complete-Tags.md)
- [Synchronizing tags with TMSU](https://github.com/RyanGreenup/Note-Taking-Tools/blob/master/tags-to-TMSU/Import-Tags-to-TMSU.md)
- Searching:
- [Use Recoll Search Engine from Terminal (integrates well with VSCode)](https://github.com/RyanGreenup/Note-Taking-Tools/blob/master/Terminal-Skim-Recoll/Terminal-Skim-Recoll.md)
- Organisation:
- [Reorder notes in folders matching Notebooks](https://gist.github.com/amelandri/555fdac374a24896f3be2f6ad32e0521)
- [Print BackLinks](https://github.com/RyanGreenup/Note-Taking-Tools/blob/master/List-BackLinks/ListBacklinks.md)
- Automation:
- [Git Synchronisation Schedule Script](https://github.com/evanshortiss/notable-git-sync-setup)
- [Publish to GitHub pages "Share via Link..." interceptor](https://github.com/thinkaliker/note-publish)