-- lua/user/test.lua return function() -- Set up vim-test plugin require("packer").use({ "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, }) end