nvim: Add vs shell alias to start vim stratchpad

This commit is contained in:
Marty Oehme 2024-07-24 14:09:47 +02:00
parent 4779617b2b
commit a94b1ccbb2
Signed by: Marty
GPG key ID: EDBF2ED917B2EF6A

View file

@ -8,4 +8,5 @@ if exist nvim; then
# open notes with my vim zettelkasten plugin # open notes with my vim zettelkasten plugin
# TODO better implementation conditional on zk & zettelkasten existing # TODO better implementation conditional on zk & zettelkasten existing
alias vn='nvim +"lua require \"zk.commands\".get(\"ZkCd\")()" +"edit ~/documents/notes/index.md"' alias vn='nvim +"lua require \"zk.commands\".get(\"ZkCd\")()" +"edit ~/documents/notes/index.md"'
alias vs='nvim +"lua require \"personal.scratchpad\".create()"'
fi fi