Christoph Wagner 67f437fcd0 linter
2024-03-31 22:38:19 +02:00

6 lines
110 B
Lua

return {
vim.api.nvim_create_user_command("Notes", function()
vim.cmd.edit('~/notes/notes.md')
end, {})
}