fix: use vim.fs.joinpath instead of string concatenation

This commit is contained in:
2026-04-13 20:06:06 +02:00
parent 45df8ad4f7
commit 34e29dfae2
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
---@type vim.lsp.Config
return {
cmd = {
vim.env.HOME .. "/repos/xml-ls/target/release/xml-ls",
vim.fs.joinpath(vim.env.HOME, "/repos/xml-ls/target/release/xml-ls"),
},
filetypes = { "xml" },
root_markers = { ".git" },