mirror of
https://github.com/kristoferssolo/SoloVim.git
synced 2025-10-21 20:10:41 +00:00
18 lines
484 B
Lua
18 lines
484 B
Lua
return {
|
|
"jellydn/typecheck.nvim",
|
|
dependencies = { "folke/trouble.nvim", dependencies = { "nvim-tree/nvim-web-devicons" } },
|
|
ft = { "javascript", "javascriptreact", "json", "jsonc", "typescript", "typescriptreact" },
|
|
opts = {
|
|
debug = true,
|
|
mode = "trouble", -- "quickfix" | "trouble"
|
|
},
|
|
keys = {
|
|
{
|
|
"<leader>lt",
|
|
vim.cmd.Typecheck,
|
|
desc = "Run Type Check",
|
|
ft = { "javascript", "javascriptreact", "json", "jsonc", "typescript", "typescriptreact" },
|
|
},
|
|
},
|
|
}
|