Dot_Files/.config/nvim/lua/core/disabled.lua

26 lines
475 B
Lua
Raw Normal View History

2022-01-15 08:21:42 -06:00
local M = {}
M.setup = function()
2022-05-11 21:00:57 -05:00
local disabled_built_ins = {
'gzip',
'zip',
'zipPlugin',
'tar',
'tarPlugin',
'getscript',
'getscriptPlugin',
'vimball',
'vimballPlugin',
'2html_plugin',
'logipat',
'rrhelper',
'spellfile_plugin',
'matchit',
}
2022-01-15 08:21:42 -06:00
2022-05-11 21:00:57 -05:00
for _, plugin in pairs(disabled_built_ins) do
vim.g['loaded_' .. plugin] = 1
end
2022-01-15 08:21:42 -06:00
end
return M