dev: automated commit - 2025-09-23 13:26:56

This commit is contained in:
Mariano Z. 2025-09-23 13:26:56 -03:00
parent 1e696b3cfd
commit c9545cdc0c
2 changed files with 19 additions and 4 deletions

View file

@ -178,5 +178,20 @@ return {
end
end,
})
vim.lsp.config("ts_go_ls", {
cmd = { vim.loop.os_homedir() .. "/Dev/random/typescript-go/built/local/tsgo", "--lsp", "-stdio" },
filetypes = {
"javascript",
"javascriptreact",
"javascript.jsx",
"typescript",
"typescriptreact",
"typescript.tsx",
},
root_markers = { "tsconfig.json", "jsconfig.json", "package.json", ".git" },
})
vim.lsp.enable("ts_go_ls")
end,
}