46 lines
No EOL
689 B
Lua
46 lines
No EOL
689 B
Lua
-- Disable providers
|
|
local disabled_providers = {
|
|
"node",
|
|
"perl",
|
|
"python3",
|
|
"ruby",
|
|
}
|
|
|
|
for _, provider in ipairs(disabled_providers) do
|
|
vim.g["loaded_" .. provider .. "_provider"] = 0
|
|
end
|
|
|
|
-- Disable plugins
|
|
local disabled_plugins = {
|
|
"2html_plugin",
|
|
"tohtml",
|
|
"getscript",
|
|
"getscriptPlugin",
|
|
"gzip",
|
|
"logipat",
|
|
"netrw",
|
|
"netrwPlugin",
|
|
"netrwSettings",
|
|
"netrwFileHandlers",
|
|
"matchit",
|
|
"tar",
|
|
"tarPlugin",
|
|
"rrhelper",
|
|
"spellfile_plugin",
|
|
"vimball",
|
|
"vimballPlugin",
|
|
"zip",
|
|
"zipPlugin",
|
|
"tutor",
|
|
"rplugin",
|
|
"syntax",
|
|
"synmenu",
|
|
"optwin",
|
|
"compiler",
|
|
"bugreport",
|
|
"ftplugin",
|
|
}
|
|
|
|
for _, plugin in ipairs(disabled_plugins) do
|
|
vim.g["loaded_" .. plugin] = 1
|
|
end |