Move after/plugin to plugin

This commit is contained in:
Oliver Davies 2024-05-22 12:36:52 +01:00
parent 9b6f7310f2
commit f724019e43
24 changed files with 0 additions and 0 deletions

20
plugin/vim-test.lua Normal file
View file

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