mirror of
https://github.com/macocianradu/setup.git
synced 2026-03-18 21:00:04 +00:00
23 lines
494 B
Lua
23 lines
494 B
Lua
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 = "│"
|
|
}
|
|
}
|
|
}
|