add module obsidian

This commit is contained in:
km 2025-01-04 01:39:32 +00:00
parent c1ed53be6f
commit 6de0d66fed
3 changed files with 37 additions and 41 deletions

View file

@ -1,9 +1,8 @@
--[[
return {
"epwalsh/obsidian.nvim",
version = "*", -- recommended, use latest release instead of latest commit
'epwalsh/obsidian.nvim',
version = '*', -- recommended, use latest release instead of latest commit
lazy = true,
ft = "markdown",
ft = 'markdown',
-- Replace the above line with this if you only want to load obsidian.nvim for markdown files in your vault:
-- event = {
-- -- If you want to use the home shortcut '~' here you need to call 'vim.fn.expand'.
@ -14,23 +13,22 @@ return {
-- },
dependencies = {
-- Required.
"nvim-lua/plenary.nvim",
'nvim-lua/plenary.nvim',
-- see below for full list of optional dependencies 👇
},
opts = {
workspaces = {
{
name = "personal",
path = "~/vaults/personal",
},
{
name = "work",
path = "~/vaults/work",
name = 'Principal',
path = '~/.obsidian/Principal',
},
-- {
-- name = 'Trabajo',
-- path = '~/.obsidian/Trabajo',
-- },
},
-- see below for full list of options 👇
},
}
--]]