feat(zk): support for zk notebook

This commit is contained in:
Matthew Ryan Dillon 2024-09-16 15:42:07 -04:00
parent 554cfa9a26
commit 28c4208cd2
4 changed files with 46 additions and 0 deletions

View file

@ -3,3 +3,16 @@ name = "rust"
[language-server.rust-analyzer.config.check]
command = "clippy"
[language-server.zk]
command = "zk"
args = ["lsp"]
[[language]]
name = "markdown"
scope = "source.md"
injection-regex = "md|markdown"
file-types = ["md", "markdown"]
roots = [".zk"]
language-servers = ["zk"]

View file

@ -0,0 +1,29 @@
[notebook]
dir = "~/notebook"
[note]
language = "en"
default-title = "untitled"
filename = "{{id}}-{{slug title}}"
extension = "md"
template = "default.md"
id-charset = "alphanum"
id-length = 4
id-case = "lower"
[group.journal]
paths = ["journal/daily"]
[group.journal.note]
filename = "{{format-date now}}"
template = "daily.md"
[lsp]
[lsp.diagnostics]
wiki-title = "hint"
dead-link = "error"
[alias]
save = 'jj commit -m "$*"'
daily = 'zk new "$ZK_NOTEBOOK_DIR/journal/daily"'

View file

@ -0,0 +1 @@
# {{ format-date now }}

View file

@ -0,0 +1,3 @@
# {{ title }}
{{ format-date now }}