From f4f77c3358855d89bd6eb3857b72befef3a15951 Mon Sep 17 00:00:00 2001 From: Paul Trowbridge Date: Thu, 17 Oct 2024 10:11:18 -0400 Subject: [PATCH] include obsidian plugin --- lua/plugins/obsidian.lua | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 lua/plugins/obsidian.lua diff --git a/lua/plugins/obsidian.lua b/lua/plugins/obsidian.lua new file mode 100644 index 0000000..a4c7c9e --- /dev/null +++ b/lua/plugins/obsidian.lua @@ -0,0 +1,30 @@ +return { + "epwalsh/obsidian.nvim", + version = "*", -- recommended, use latest release instead of latest commit + lazy = true, + 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'. + -- -- E.g. "BufReadPre " .. vim.fn.expand "~" .. "/my-vault/*.md" + -- -- refer to `:h file-pattern` for more examples + -- "BufReadPre path/to/my-vault/*.md", + -- "BufNewFile path/to/my-vault/*.md", + -- }, + dependencies = { + -- Required. + "nvim-lua/plenary.nvim", + + -- see below for full list of optional dependencies 👇 + }, + opts = { + workspaces = { + { + name = "work", + path = "//mnt/c/Users/ptrowbridge/hc_notes" + }, + }, + + -- see below for full list of options 👇 + }, +}