mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-01 11:06:54 -04:00
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:
parent
cb2cb74f3c
commit
972f378653
1 changed files with 1 additions and 1 deletions
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue