all repos

init.lua @ 16f30e9

my nvim config
1 files changed, 3 insertions(+), 2 deletions(-)
style(neotest): reformat
Author: Smirnov Oleksandr ss2316544@gmail.com
Committed at: 2024-04-13 16:36:13 +0300
Parent: 64ddbdd
M lua/plugins/neotest.lua

@@ -19,7 +19,7 @@ { "[T", function() n.jump.prev {status = "failed"} end },

} end, dependencies = { - "nvim-neotest/nvim-nio"; + "nvim-neotest/nvim-nio", { "roveo/neotest-go", branch = "feat/testify-suite" }, "nvim-neotest/neotest-plenary", "nvim-treesitter",

@@ -28,11 +28,12 @@ init = function()

vim.diagnostic.config({ virtual_text = { format = function(diagnostic) - return diagnostic.message + local r, _ = diagnostic.message :gsub("\n", " ") :gsub("\t", " ") :gsub("%s+", " ") :gsub("^%s+", "") + return r end, }, }, vim.api.nvim_create_namespace "neotest")