local M = require('module'):new() function M:initialize(config) self.plugins = nukevim.modules:get('plugins') end function M:register() if (self.plugins:has('TysonAndre/php-vim-syntax')) then vim.g.polyglot_disabled = { "php" } end self.plugins:add('sheerun/vim-polyglot') end return M