local map = vim.api.nvim_set_keymap local options = { silent = true, } map("n", "tf", ":TestFile", options) map("n", "tg", ":TestVisit", options) map("n", "tl", ":TestLast", options) map("n", "tn", ":TestNearest", options) map("n", "ts", ":TestSuite", options) vim.cmd [[ let test#echo_command = 0 let test#neovim#start_normal = 1 let test#strategy = "neoterm" let test#php#phpunit#executable = 'run test' let test#php#phpunit#options = '--colors=always --testdox' ]]