diff options
Diffstat (limited to 'lua/settings.lua')
-rw-r--r-- | lua/settings.lua | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/lua/settings.lua b/lua/settings.lua index cce8d87e..04a302aa 100644 --- a/lua/settings.lua +++ b/lua/settings.lua @@ -58,3 +58,27 @@ opt.signcolumn = "yes" -- always show the sign column, otherwise it would shift 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 |