-- lua/user/test.lua -- Returns vim-test plugin spec for lazy.nvim return { { "vim-test/vim-test", config = function() vim.cmd([[ let test#strategy = "neovim" " Customize the keybindings or other settings here nmap t :TestNearest nmap t :TestFile nmap t :TestSuite nmap t :TestLast nmap t :TestVisit ]]) end, }, }