local set = vim.keymap.set local options = { silent = true, } set("n", "tf", ":TestFile", options) set("n", "tg", ":TestVisit", options) set("n", "tl", ":TestLast", options) set("n", "tn", ":TestNearest", options) set("n", "ts", ":TestSuite", options) vim.cmd [[ let test#php#phpunit#options = '--colors=always --testdox' let g:test#strategy = 'vimux' ]]