all repos

init.lua @ 958b9e9317f65fdfcdb71bc3a351e251c44d3067

my nvim config
1 files changed, 7 insertions(+), 2 deletions(-)
feat(neotest): update summary keys, update go adapter conf
Author: Smirnov Oleksandr ss2316544@gmail.com
Committed at: 2022-07-17 00:18:02 +0300
Parent: 29f1f7d
M lua/configs/neotest.lua

@@ -2,9 +2,8 @@ local neotest = require "neotest"

local map = require("core.utils").map neotest.setup { - adapters = { - require "neotest-go", + require "neotest-go" { experimental = { test_table = true } }, }, icons = { expanded = "",

@@ -17,6 +16,12 @@ passed = "",

running = "", failed = "", unknown = "", + }, + summary = { + mappings = { + expand = { "l", "h", "<CR>" }, + stop = "s", + }, }, }