25 lines
540 B
Lua
25 lines
540 B
Lua
return {
|
|
{
|
|
"epwalsh/obsidian.nvim",
|
|
lazy = true,
|
|
ft = "markdown",
|
|
dependencies = {
|
|
"nvim-lua/plenary.nvim",
|
|
"hrsh7th/nvim-cmp",
|
|
"nvim-telescope/telescope.nvim",
|
|
"nvim-treesitter",
|
|
},
|
|
config = function()
|
|
vim.opt.conceallevel = 2
|
|
require("obsidian").setup({
|
|
workspaces = {
|
|
{
|
|
name = "COe",
|
|
path = "/run/user/1000/gvfs/smb-share:server=192.168.0.100,share=administration/NetzwerkTeam/wiki",
|
|
},
|
|
},
|
|
})
|
|
end,
|
|
},
|
|
}
|