aboutsummaryrefslogtreecommitdiffhomepage
path: root/vim/lua/configs/lazy.lua
diff options
context:
space:
mode:
Diffstat (limited to 'vim/lua/configs/lazy.lua')
-rw-r--r--vim/lua/configs/lazy.lua47
1 files changed, 47 insertions, 0 deletions
diff --git a/vim/lua/configs/lazy.lua b/vim/lua/configs/lazy.lua
new file mode 100644
index 0000000..cd170bd
--- /dev/null
+++ b/vim/lua/configs/lazy.lua
@@ -0,0 +1,47 @@
1return {
2 defaults = { lazy = true },
3 install = { colorscheme = { "nvchad" } },
4
5 ui = {
6 icons = {
7 ft = "",
8 lazy = "󰂠 ",
9 loaded = "",
10 not_loaded = "",
11 },
12 },
13
14 performance = {
15 rtp = {
16 disabled_plugins = {
17 "2html_plugin",
18 "tohtml",
19 "getscript",
20 "getscriptPlugin",
21 "gzip",
22 "logipat",
23 "netrw",
24 "netrwPlugin",
25 "netrwSettings",
26 "netrwFileHandlers",
27 "matchit",
28 "tar",
29 "tarPlugin",
30 "rrhelper",
31 "spellfile_plugin",
32 "vimball",
33 "vimballPlugin",
34 "zip",
35 "zipPlugin",
36 "tutor",
37 "rplugin",
38 "syntax",
39 "synmenu",
40 "optwin",
41 "compiler",
42 "bugreport",
43 "ftplugin",
44 },
45 },
46 },
47}