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#strategy = "neovim_sticky" let g:test#neovim_sticky#kill_previous = 1 let g:test#neovim_sticky#reopen_window = 1 let g:test#preserve_screen = 0 let test#php#phpunit#executable = './run test' let test#php#phpunit#options = '--colors=always --testdox' ]]