-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit.lua
executable file
·59 lines (59 loc) · 964 Bytes
/
init.lua
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
vim.loader.enable()
require("bootstrap")
require("lazy").setup({
spec = {
{ "hoofcushion/hc-nvim", dev = true, import = "hc-nvim.export" },
},
dev = {
path = vim.fs.joinpath(vim.fn.stdpath("config"), "dev"),
fallback = true,
},
profiling = {
-- loader=true,
-- require=true,
},
performance = {
rtp = {
disabled_plugins = {
"2html_plugin",
"bugreport",
"compiler",
"editorconfig",
"filetype",
"ftplugin",
"getscript",
"getscriptPlugin",
"gzip",
"logipat",
"man",
"matchit",
"matchparen",
"netrw",
"netrwFileHandlers",
"netrwPlugin",
"netrwSettings",
"nvim",
"optwin",
"osc52",
"rplugin",
"rrhelper",
-- "shada",
"spellfile",
"spellfile_plugin",
"synmenu",
"syntax",
"tar",
"tarPlugin",
"tohtml",
"tutor",
"vimball",
"vimballPlugin",
"zip",
"zipPlugin",
},
},
},
default = {
lazy = true,
},
})