feat(languages): Add typescript support

This commit is contained in:
kalmenn 2025-01-23 14:56:07 +01:00
parent 876229d65d
commit 2f8c25b4a8
Signed by: kalmenn
GPG key ID: F500055C44BC3834
2 changed files with 11 additions and 0 deletions

View file

@ -0,0 +1,10 @@
return {
"pmizio/typescript-tools.nvim",
dependencies = { "nvim-lua/plenary.nvim", "neovim/nvim-lspconfig" },
cond = function(_)
return vim.fn.executable("tsserver") ~= 0
end,
config = function(opts)
require("typescript-tools").setup(opts)
end,
}