neovim-config/lua/plugins/configs/lazy_nvim.lua

48 lines
841 B
Lua
Raw Normal View History

2023-01-07 08:11:43 +00:00
return {
2023-01-29 18:00:13 +00:00
defaults = { lazy = true },
install = { colorscheme = { "nvchad" } },
2023-01-07 08:11:43 +00:00
ui = {
icons = {
ft = "",
2023-01-07 08:11:43 +00:00
lazy = "",
loaded = "",
not_loaded = "",
},
},
performance = {
rtp = {
disabled_plugins = {
"2html_plugin",
"tohtml",
"getscript",
"getscriptPlugin",
"gzip",
"logipat",
"netrw",
"netrwPlugin",
"netrwSettings",
"netrwFileHandlers",
"matchit",
"tar",
"tarPlugin",
"rrhelper",
"spellfile_plugin",
"vimball",
"vimballPlugin",
"zip",
"zipPlugin",
"tutor",
"rplugin",
"syntax",
"synmenu",
"optwin",
"compiler",
"bugreport",
"ftplugin",
},
},
},
}