From f6c4c6ace6c9532cba1088e6f5ed7f57abb3bc74 Mon Sep 17 00:00:00 2001 From: Oliver Davies <oliver@oliverdavies.uk> Date: Tue, 11 Jan 2022 17:51:17 +0000 Subject: [PATCH] feat(nvim): configure vim-test more --- roles/neovim/files/after/plugin/vim-test.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/roles/neovim/files/after/plugin/vim-test.lua b/roles/neovim/files/after/plugin/vim-test.lua index 2834b3c0..ab2eb8ff 100644 --- a/roles/neovim/files/after/plugin/vim-test.lua +++ b/roles/neovim/files/after/plugin/vim-test.lua @@ -10,4 +10,6 @@ map("n", "t<C-l>", ":TestLast<CR>", options) map("n", "t<C-n>", ":TestNearest<CR>", options) map("n", "t<C-s>", ":TestSuite<CR>", options) +vim.g["test#echo_command"] = 0 +vim.g["test#neovim#start_normal"] = 1 vim.g["test#strategy"] = "neovim"