lua.lua (259B)
1 -- Vim compiler file 2 -- Compiler: Lua 3 -- Maintainer: Tomas Nemec <owl@gtms.dev> 4 -- Last Change: 18.10.2022 5 if vim.fn.exists('current_compiler') then 6 return 7 end 8 vim.g.current_compiler = 'lua' 9 10 vim.bo.makeprg = 'lua %:S' 11 vim.bo.errorformat = 'lua: %f:%l: %m'