Crates.io | zeta-note |
lib.rs | zeta-note |
version | 0.1.8 |
source | src |
created_at | 2022-03-26 16:05:49.214006 |
updated_at | 2022-03-26 16:05:49.214006 |
description | Markdown LSP server for easy note-taking with cross-references and diagnostics |
homepage | https://github.com/artempyanykh/zeta-note |
repository | https://github.com/artempyanykh/zeta-note |
max_upload_size | |
id | 556764 |
size | 910,842 |
Delightful note taking in markdown...
OBLIGATORY DISCLAIMER: Zeta Note is a work-in-progress. For me it works fine, but there wasn't much testing and stability in general isn't guaranteed.
Zeta Note is a language server that helps you write and manage notes. The primary focus is to support Zettelkasten-like1, 2 note taking by providing an easy way to cross-reference notes (see more about features below).
But you don't have to go all-in on Zettelkasten method to benefit from Zeta Note:
Write your notes that way you like.
Cross-reference notes using reference links:
[:another-note]
- a reference to another note.[:another-note@##Subsection]
- a reference to a subsection of a note.[:@##Inner subsection]
- a reference to a subsection of the current note.Auto-completion provided by Zeta Note makes this process quick and easy.
Go To Definition, Hover preview, Code Lenses, and Diagnostics simplify navigating and maintaining notes.
mv zeta-note-macos zeta-note && chmod +x zeta-note
mv zeta-note-linux zeta-note && chmod +x zeta-note
zeta-note-windows.exe
to zeta-note.exe
.PATH
.
$HOME/.local/bin/
(make sure this folder is in your PATH
).git clone https://github.com/artempyanykh/zeta-note.git
zeta-note
folder run cargo install --path .
$HOME/.cargo/bin
(make sure this folder is in your PATH
).✅ - done; 🗓 - planned.
[1]: You may have heard about Roam Research. This is a commercial implementation of the Zettelkasten method and another point of reference for what Zeta Note is about. However, unlike a proprietary Roam Research, Zeta Note is free, open-source and integrated into your favourite editor (albeit for not not as feature rich as Roam Research).
[2]: There is an excellent VSCode extension called Markdown Memo. You definitely need to check it out if you're primarily using VSCode as it has some features that are missing in Zeta Note and Zeta Note VSCode extension. However, Markdown Memo is VSCode specific while Zeta Note is a generic language server, so can be used with any editor that has LSP support: Emacs, Vim, Neovim, etc.
[3]: Since Zeta Note is a regular Language Server most of the functionality works out of the box with any LSP client. The only thing that requires custom handling is "Code Lenses" due to how these are defined in LSP spec.
[4]: rust-analyzer was a huge source of inspiration for how to implement various parts of an LSP server in Rust. Thank you!