You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

14 lines
295 B

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