AutoYADM commit: 2024-11-18 19:03:22
This commit is contained in:
parent
8722ad9005
commit
14585b259b
7 changed files with 37 additions and 14 deletions
20
.config/nvim/lua/plugins/obsidian-bridge.lua
Normal file
20
.config/nvim/lua/plugins/obsidian-bridge.lua
Normal 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",
|
||||
},
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue