Switch obsidian.nvim to the maintained fork

epwalsh/obsidian.nvim is unmaintained and was pinned to a July 2024 commit.
Use the community fork, drop the nvim-cmp dependency that LazyVim disables, and
point the picker at snacks instead of pulling in fzf-lua.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
2026-07-31 12:27:20 -04:00
co-authored by Claude Opus 5
parent cf36c2f164
commit fff32f07a6
+4 -3
View File
@@ -1,5 +1,5 @@
return { return {
"epwalsh/obsidian.nvim", "obsidian-nvim/obsidian.nvim",
version = "*", -- recommended, use latest release instead of latest commit version = "*", -- recommended, use latest release instead of latest commit
lazy = true, lazy = true,
event = { event = {
@@ -13,8 +13,6 @@ return {
}, },
dependencies = { dependencies = {
"nvim-lua/plenary.nvim", "nvim-lua/plenary.nvim",
"hrsh7th/nvim-cmp",
"ibhagwan/fzf-lua",
}, },
opts = { opts = {
workspaces = { workspaces = {
@@ -23,5 +21,8 @@ return {
path = "~/notes", path = "~/notes",
}, },
}, },
picker = {
name = "snacks.pick",
},
}, },
} }