local function handle_enter() local util = require("obsidian.util") if util.cursor_on_markdown_link(nil, nil, true) then vim.cmd("ObsidianFollowLink") else local line = vim.api.nvim_get_current_line() if string.match(line, "^%s*- %[[x ]%].*") then util.toggle_checkbox() else vim.cmd("normal! viw:'<,'>ObsidianLink") end end end return { "epwalsh/obsidian.nvim", version = "*", -- recommended, use latest release instead of latest commit lazy = false, dependencies = { "nvim-lua/plenary.nvim" }, config = function(_, opts) local notes_path = (os.getenv "HOME") .. "/Workspace/Notes" local scan = require("plenary.scandir").scan_dir(notes_path, {add_dirs = true, depth = 1 }) local found = false for _, v in ipairs(scan) do local subdir = v:match("([^/]+)$") found = true if vim.fn.isdirectory(notes_path .. "/" .. subdir .. "/.obsidian") == 1 then table.insert(opts.workspaces, { name = subdir, path = notes_path .. "/" .. subdir, overrides = { daily_notes = { folder = "Daily", }, }, }) end end if found then require("obsidian").setup(opts) end end, opts = { workspaces = {}, note_id_func = function(title) return title end, daily_notes = { folder = "." }, disable_frontmatter = true, ui = { hl_groups = { ObsidianRefText = { fg = "#61afef" }, } } }, keys = { {"", handle_enter, ft = "markdown" }, {"", "ObsidianLink", ft = "markdown", mode = "v"}, {"rn", "ObsidianRename", ft = "markdown" }, {"l", "i- [ ] ", ft = "markdown"}, {"o", "o- [ ] ", ft = "markdown"}, {"l", "- [ ] ", ft = "markdown", mode = "i" }, {"jt", "ObsidianToday"}, {"jy", "ObsidianYesterday"}, {"ju", "ObsidianTomorrow"}, {"", ":set nohlsearch/\\[[^\\[\\]]*\\]([^()]*):let @/ = \"\":set hlsearch", ft = "markdown", silent = true }, }, }