-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.lua
More file actions
44 lines (41 loc) · 910 Bytes
/
init.lua
File metadata and controls
44 lines (41 loc) · 910 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
-- Load impatient to speed up the config
---@diagnostic disable-next-line: unused-local
local status_ok = pcall(require, "impatient")
-- Disable Builtin Plugins
local disabled_built_ins = {
"netrw",
"netrwPlugin",
"netrwSettings",
"netrwFileHandlers",
"gzip",
"zip",
"zipPlugin",
"tar",
"tarPlugin",
"getscript",
"getscriptPlugin",
"vimball",
"vimballPlugin",
"2html_plugin",
"logipat",
"rrhelper",
"spellfile_plugin",
"matchit",
}
for _, plugin in pairs(disabled_built_ins) do
vim.g["loaded_" .. plugin] = 1
end
vim.opt.lazyredraw = false
require('arcane.libs')
reload("arcane.core")
-- reload("arcane.syntax")
-- reload("arcane.completion")
-- reload("arcane.debugger")
-- reload("arcane.general")
-- reload("arcane.lsp")
-- reload("arcane.search")
reload("arcane.ui")
-- reload('arcane.vcs')
--
-- reload("arcane.utils.colorscheme")
-- reload('arcane.utils.winbar')