2024-08-22 09:30:33 +02:00
|
|
|
return {
|
|
|
|
'epwalsh/obsidian.nvim',
|
|
|
|
version = '*',
|
|
|
|
lazy = true,
|
|
|
|
ft = 'markdown',
|
|
|
|
dependencies = {
|
|
|
|
'nvim-lua/plenary.nvim',
|
|
|
|
},
|
|
|
|
opts = {
|
|
|
|
workspaces = {
|
|
|
|
{
|
|
|
|
name = 'work',
|
|
|
|
path = '~/notes-work',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name = 'personal',
|
|
|
|
path = '~/notes-personal',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
templates = {
|
|
|
|
folder = '~/notes-templates',
|
|
|
|
date_format = '%Y-%m-%d',
|
|
|
|
time_format = '%H:%M',
|
|
|
|
},
|
2024-09-06 22:15:53 +02:00
|
|
|
disable_frontmatter = true,
|
2024-08-22 09:30:33 +02:00
|
|
|
},
|
|
|
|
}
|