1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2025-07-03 13:29:24 +00:00

[neovim] Add neotest plugin

This commit is contained in:
2024-02-03 16:22:54 +01:00
parent 1499944349
commit daef32ffe8
7 changed files with 61 additions and 21 deletions

View File

@ -232,9 +232,23 @@ require("lazy").setup({
event = { "CmdlineEnter" },
ft = { "go", "gomod" },
},
{
"nvim-neotest/neotest",
dependencies = {
"nvim-neotest/neotest-go",
"antoinemadec/FixCursorHold.nvim",
},
},
-- Typescript
{ "pmizio/typescript-tools.nvim", opts = {} },
{
"pmizio/typescript-tools.nvim",
opts = {
settings = {
complete_function_calls = true
}
}
},
-- Markdown
{ "mzlogin/vim-markdown-toc" },