AutoYADM commit: 2024-11-18 19:03:22

This commit is contained in:
Daniel Fichtinger 2024-11-18 19:03:22 -05:00
parent 8722ad9005
commit 14585b259b
7 changed files with 37 additions and 14 deletions

View file

@ -0,0 +1,20 @@
local opts = {
obsidian_server_address = "https://localhost:27124",
scroll_sync = false, -- See "Sync of buffer scrolling" section below
}
return {
"oflisback/obsidian-bridge.nvim",
-- disable for now because paths aren't working
enabled = false,
config = function()
require("obsidian-bridge").setup()
end,
event = {
"BufReadPre *.md",
"BufNewFile *.md",
},
lazy = true,
dependencies = {
"nvim-lua/plenary.nvim",
},
}