yadm-config/.config/nvim/lua/plugins/obsidian.lua

25 lines
331 B
Lua

if true then
return {}
end
return {
"epwalsh/obsidian.nvim",
version = "*",
lazy = true,
ft = "markdown",
dependencies = {
-- Required.
"nvim-lua/plenary.nvim",
},
opts = {
ui = {
enable = true,
},
workspaces = {
{
name = "notes",
path = ".",
},
},
},
}