fix(config): normalize default install_dir

Problem: The default `install_dir` is not normalized, leading to a
false positive checkhealth failure when comparing against the normalized
`runtimepath` directories.

Solution: Use trailing slash in default `install_dir`.
This commit is contained in:
Christian Clason
2026-03-03 19:18:04 +01:00
committed by Christian Clason
parent cb2cb74f3c
commit 972f378653

View File

@@ -7,7 +7,7 @@ M.tiers = { 'stable', 'unstable', 'unmaintained', 'unsupported' }
---@type TSConfig
local config = {
install_dir = vim.fs.joinpath(vim.fn.stdpath('data') --[[@as string]], 'site'),
install_dir = vim.fs.joinpath(vim.fn.stdpath('data') --[[@as string]], 'site/'),
}
---Setup call for users to override configuration configurations.