Archived
0
0
Fork 0
This repository has been archived on 2024-02-06. You can view files and clone it, but cannot push or open issues or pull requests.
neovim-config/lua/core/disable.lua

33 lines
462 B
Lua
Raw Permalink Normal View History

local default_plugins = {
2022-07-18 06:52:18 +00:00
"2html_plugin",
"getscript",
"getscriptPlugin",
"gzip",
"logipat",
"netrw",
"netrwPlugin",
"netrwSettings",
"netrwFileHandlers",
"matchit",
"tar",
"tarPlugin",
"rrhelper",
"spellfile_plugin",
2022-07-18 06:52:18 +00:00
"vimball",
"vimballPlugin",
"zip",
"zipPlugin",
"tutor",
"rplugin",
"syntax",
"synmenu",
"optwin",
"compiler",
"bugreport",
"ftplugin",
2022-07-18 06:52:18 +00:00
}
for _, plugin in pairs(default_plugins) do
2022-07-18 06:52:18 +00:00
vim.g["loaded_" .. plugin] = 1
end