From 0bf78165d10c6ba4fc7898cee9f9ba45db5204f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20La=C3=ADn?= Date: Tue, 7 Jan 2025 23:58:57 +0100 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=EF=B8=8F=20refactor(nvim):=20obsidian?= =?UTF-8?q?=20config?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../lua/plugins/extras/editor/docs/obsidian.lua | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/.config/nvim/lua/plugins/extras/editor/docs/obsidian.lua b/.config/nvim/lua/plugins/extras/editor/docs/obsidian.lua index 925bcb99..103d212b 100644 --- a/.config/nvim/lua/plugins/extras/editor/docs/obsidian.lua +++ b/.config/nvim/lua/plugins/extras/editor/docs/obsidian.lua @@ -31,23 +31,19 @@ return { }, opts = { workspaces = { - { - name = "personal", - path = "~/documents/obsidian-vaults/personal/", - }, { name = "personal-brain", - path = "~/documents/obsidian-vaults/personal-brain/", + path = "~/documents/obsidian/personal-brain/", }, }, - notes_subdir = "Notes", + notes_subdir = "01 - Bandeja Entrada", daily_notes = { - folder = "Journal/Entries/Daily", + folder = "03 - Diario/Diariamente", date_format = "%Y-%m-%d", alias_format = "%B %-d, %Y", - template = "_data_/templates/journal/daily_entry.md", + template = "00 - Data/Plantillas/Diariamente.md", }, mappings = { @@ -72,7 +68,7 @@ return { }, templates = { - subdir = "_data_/templates", + subdir = "00 - Data/Plantillas", date_format = "%Y-%m-%d-%a", time_format = "%H:%M", }, @@ -82,7 +78,7 @@ return { end, attachments = { - img_folder = "_data_/media", + img_folder = "00 - Data/Documentos", }, }, },