Added obsidian.nvim

This commit is contained in:
Radu Macocian (admac)
2026-03-05 15:28:06 +01:00
parent 618a85305d
commit d50d665994
4 changed files with 173 additions and 18 deletions

View File

@@ -0,0 +1,22 @@
require("snacks").setup {
image = {
enabled = true,
resolve = function(path, src)
local api = require "obsidian.api"
if api.path_is_note(path) then
return api.resolve_attachment_path(src)
end
end
},
indent = {
enabled = true,
indent = {
enabled = true,
char = ""
},
scope = {
enabled = true,
char = ""
}
}
}