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

@ -30,6 +30,7 @@
"ripgrep": { "branch": "master", "commit": "79cbe89deb1151e703f4d91b19af9cdcc128b765" },
"rustaceanvim": { "branch": "master", "commit": "25aab238aad3e58f864274449456bdc339981750" },
"telescope.nvim": { "branch": "0.1.x", "commit": "a0bbec21143c7bc5f8bb02e0005fa0b982edc026" },
"typescript-tools.nvim": { "branch": "master", "commit": "35e397ce467bedbbbb5bfcd0aa79727b59a08d4a" },
"undotree": { "branch": "master", "commit": "78b5241191852ffa9bb5da5ff2ee033160798c3b" },
"vim-fugitive": { "branch": "master", "commit": "fcb4db52e7f65b95705aa58f0f2df1312c1f2df2" }
}

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,
}