| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 | 
							- ---  HELPERS  ---
 
- local cmd = vim.cmd
 
- local opt = vim.opt
 
- ---  VIM ONLY COMMANDS  ---
 
- cmd "filetype plugin on"
 
- cmd('let &titleold="' .. TERMINAL .. '"')
 
- cmd "set inccommand=split"
 
- cmd "set iskeyword+=-"
 
- cmd "set whichwrap+=<,>,[,],h,l"
 
- if O.transparent_window then
 
-   cmd "au ColorScheme * hi Normal ctermbg=none guibg=none"
 
-   cmd "au ColorScheme * hi SignColumn ctermbg=none guibg=none"
 
- end
 
- ---  SETTINGS  ---
 
- opt.shortmess:append "c"
 
- 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
 
- for k, v in pairs(O.default_options) do
 
-   vim.opt[k] = v
 
- end
 
 
  |