nvim/lua/custom/plugins/journal.lua

14 lines
242 B
Lua
Raw Normal View History

2024-12-19 13:53:15 -03:00
return {
"jakobkhansen/journal.nvim",
config = function()
require("journal").setup({
journal = {
format = '%Y/%m-%B-daily',
template = function()
return "# %Y %B %d"
end
}
})
end,
}