nvim: obsidian, trouble mappings and more

This commit is contained in:
2024-07-15 19:34:04 +03:00
parent bc42df2a96
commit 9ef8381c8b
6 changed files with 69 additions and 59 deletions

View File

@ -0,0 +1,24 @@
return {
"epwalsh/obsidian.nvim",
version = "*",
lazy = true,
ft = "markdown",
-- Replace the above line with this if you only want to load obsidian.nvim for markdown files in your vault:
-- event = {
-- -- If you want to use the home shortcut '~' here you need to call 'vim.fn.expand'.
-- -- E.g. "BufReadPre " .. vim.fn.expand "~" .. "/my-vault/**.md"
-- "BufReadPre path/to/my-vault/**.md",
-- "BufNewFile path/to/my-vault/**.md",
-- },
dependencies = {
"nvim-lua/plenary.nvim",
},
opts = {
workspaces = {
{
name = "main",
path = "~/docs/vault",
},
},
},
}