blob: cec362b7d67bd3306cb592c32e8a1334e09b9370 (
plain)
1
2
3
4
5
6
|
-- Resolved notes directory (normalized), or nil when `$NOTES_DIR` is unset.
-- Single source of truth shared by the notes feature (plugin/50-notes.lua) and the follow engine
-- wiring (plugin/50-follow.lua).
local M = {}
M.dir = vim.env.NOTES_DIR and vim.fs.normalize(vim.env.NOTES_DIR) or nil
return M
|