starter/lua/plugins/development.lua

117 lines
2.0 KiB
Lua
Raw Normal View History

2024-06-26 01:20:02 +08:00
require("dap.ext.vscode").load_launchjs()
2024-05-15 10:04:27 +08:00
return {
2024-05-25 23:27:46 +08:00
-- Overall
{
"Zeioth/compiler.nvim",
cmd = { "CompilerOpen", "CompilerToggleResults", "CompilerRedo" },
dependencies = {
"stevearc/overseer.nvim",
},
opts = {},
},
{
"stevearc/overseer.nvim",
2024-06-26 01:20:02 +08:00
cmd = { "CompilerOpen", "CompilerToggleResults", "CompilerRedo", "OverseerRun" },
2024-05-25 23:27:46 +08:00
opts = {
task_list = {
direction = "bottom",
min_height = 25,
max_height = 25,
default_detail = 1,
},
},
},
2024-06-01 11:28:26 +08:00
{
"zeioth/garbage-day.nvim",
event = "LspAttach",
dependencies = "neovim/nvim-lspconfig",
opts = {},
},
2024-06-11 10:38:40 +08:00
{
"piersolenski/telescope-import.nvim",
dependencies = { "nvim-telescope/telescope.nvim" },
config = function()
require("telescope").load_extension("import")
end,
},
2024-06-28 15:37:49 +08:00
{
"Tastyep/structlog.nvim",
},
2024-07-04 10:14:08 +08:00
{
"rachartier/tiny-inline-diagnostic.nvim",
event = "VeryLazy",
opts = {
signs = {
left = "",
right = "",
diag = "",
arrow = "",
up_arrow = "",
vertical = "",
vertical_end = "",
},
},
},
2024-05-25 23:27:46 +08:00
-- TS / JS
{
"dmmulroy/tsc.nvim",
cmd = "TSC",
opts = {
use_trouble_qflist = true,
},
2024-05-30 12:45:23 +08:00
ft = {
"typescript",
"typescriptreact",
},
2024-05-25 23:27:46 +08:00
},
2024-05-30 11:05:20 +08:00
{
"Redoxahmii/json-to-types.nvim",
cmd = { "ConvertJSONtoTS", "ConvertJSONtoTSBuffer" },
2024-05-30 12:45:23 +08:00
build = "sh install.sh bun",
ft = {
"typescript",
"typescriptreact",
},
},
{
"barrett-ruth/import-cost.nvim",
build = "sh install.sh bun",
ft = {
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
},
2024-05-30 11:05:20 +08:00
},
2024-05-25 23:27:46 +08:00
{
"dmmulroy/ts-error-translator.nvim",
2024-05-30 12:45:23 +08:00
ft = {
"typescript",
"typescriptreact",
},
2024-05-25 23:27:46 +08:00
},
2024-06-28 15:37:49 +08:00
-- C#
2024-06-20 17:49:01 +08:00
{
2024-06-28 15:37:49 +08:00
"iabdelkareem/csharp.nvim",
ft = "cs",
keys = {
{
"<F5>",
function()
require("csharp").debug_project()
end,
{ desc = "C# debug project", noremap = true, nowait = true },
},
2024-06-20 17:49:01 +08:00
},
2024-06-28 15:37:49 +08:00
dependencies = {
"williamboman/mason.nvim",
"mfussenegger/nvim-dap",
"Tastyep/structlog.nvim",
},
config = function()
require("mason").setup()
require("csharp").setup()
end,
2024-06-20 17:49:01 +08:00
},
2024-05-15 10:04:27 +08:00
}