feat(zk): support for zk notebook
This commit is contained in:
parent
554cfa9a26
commit
28c4208cd2
4 changed files with 46 additions and 0 deletions
|
@ -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"]
|
||||
|
|
29
home/private_dot_config/zk/config.toml
Normal file
29
home/private_dot_config/zk/config.toml
Normal 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"'
|
1
home/private_dot_config/zk/templates/daily.md
Normal file
1
home/private_dot_config/zk/templates/daily.md
Normal file
|
@ -0,0 +1 @@
|
|||
# {{ format-date now }}
|
3
home/private_dot_config/zk/templates/default.md
Normal file
3
home/private_dot_config/zk/templates/default.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
# {{ title }}
|
||||
|
||||
{{ format-date now }}
|
Loading…
Add table
Reference in a new issue