31 lines
698 B
Lua
31 lines
698 B
Lua
-- since this is just an example spec, don't actually load anything here and return an empty spec
|
|
-- stylua: ignore
|
|
-- if true then return {} end
|
|
|
|
-- every spec file under the "plugins" directory will be loaded automatically by lazy.nvim
|
|
--
|
|
-- In your plugin files, you can:
|
|
-- * add extra plugins
|
|
-- * disable/enabled LazyVim plugins
|
|
-- * override the configuration of LazyVim plugins
|
|
return {
|
|
"kovisoft/paredit",
|
|
{
|
|
"monkoose/nvlime",
|
|
event = "VeryLazy",
|
|
dependencies = {
|
|
"monkoose/parsley"
|
|
}
|
|
},
|
|
{
|
|
"williamboman/mason.nvim",
|
|
opts = {
|
|
ensure_installed = {
|
|
"stylua",
|
|
"shellcheck",
|
|
"shfmt",
|
|
"flake8",
|
|
},
|
|
},
|
|
},
|
|
}
|