This commit is contained in:
Christoph Wagner 2024-03-31 22:38:19 +02:00
parent 0b95929489
commit 67f437fcd0
4 changed files with 24 additions and 1 deletions

5
lua/functions/notes.lua Normal file
View file

@ -0,0 +1,5 @@
return {
vim.api.nvim_create_user_command("Notes", function()
vim.cmd.edit('~/notes/notes.md')
end, {})
}