diff options
author | christianchiarulli <[email protected]> | 2021-07-09 21:34:12 -0400 |
---|---|---|
committer | christianchiarulli <[email protected]> | 2021-07-09 21:34:12 -0400 |
commit | 4ff04e31f0216278f0549b5c493e153d66759e00 (patch) | |
tree | 9cfce5e41503beb0d66448eba89328198a921c62 /lua/settings.lua | |
parent | b8182d5aeecd50ad6a7d4f5b9b1a8ccbd8bbad02 (diff) |
config refactor
Diffstat (limited to 'lua/settings.lua')
-rw-r--r-- | lua/settings.lua | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/lua/settings.lua b/lua/settings.lua index 04a302aa..396df565 100644 --- a/lua/settings.lua +++ b/lua/settings.lua @@ -59,26 +59,26 @@ opt.wrap = O.wrap_lines -- display lines as one long line opt.spell = O.spell opt.spelllang = O.spelllang opt.scrolloff = 8 -- is one of my fav ---local disabled_built_ins = { --- "netrw", --- "netrwPlugin", --- "netrwSettings", --- "netrwFileHandlers", --- "gzip", --- "zip", --- "zipPlugin", --- "tar", --- "tarPlugin", -- 'man', --- "getscript", --- "getscriptPlugin", --- "vimball", --- "vimballPlugin", --- "2html_plugin", --- "logipat", --- "rrhelper", --- "spellfile_plugin", --- -- 'matchit', 'matchparen', 'shada_plugin', ---} ---for _, plugin in pairs(disabled_built_ins) do --- vim.g["loaded_" .. plugin] = 1 ---end +local disabled_built_ins = { + "netrw", + "netrwPlugin", + "netrwSettings", + "netrwFileHandlers", + "gzip", + "zip", + "zipPlugin", + "tar", + "tarPlugin", -- 'man', + "getscript", + "getscriptPlugin", + "vimball", + "vimballPlugin", + "2html_plugin", + "logipat", + "rrhelper", + "spellfile_plugin", + -- 'matchit', 'matchparen', 'shada_plugin', +} +for _, plugin in pairs(disabled_built_ins) do + vim.g["loaded_" .. plugin] = 1 +end |