48 lines
1.1 KiB
Lua
48 lines
1.1 KiB
Lua
return {
|
|
{
|
|
'taku25/UEP.nvim',
|
|
-- UNL.nvim is a required dependency
|
|
dependencies = {
|
|
'taku25/UNL.nvim',
|
|
'nvim-telescope/telescope.nvim', -- Optional
|
|
},
|
|
-- All settings are inherited from UNL.nvim, but can be overridden here
|
|
opts = {
|
|
-- UEP-specific settings can be placed here
|
|
}
|
|
},
|
|
{
|
|
'taku25/UBT.nvim',
|
|
-- UBT.nvim depends on UNL.nvim.
|
|
-- This line is usually not necessary as lazy.nvim resolves it automatically.
|
|
dependencies = { 'taku25/UNL.nvim' },
|
|
|
|
-- If you use autocmd (automation), eager loading is recommended.
|
|
-- lazy = false,
|
|
|
|
opts = {
|
|
-- Add your settings here (details below)
|
|
}
|
|
},
|
|
{
|
|
'taku25/ULG.nvim',
|
|
-- ULG.nvim depends on UNL.nvim.
|
|
-- UBT.nvim is also required for build log features.
|
|
dependencies = { 'taku25/UNL.nvim', 'taku25/UBT.nvim' },
|
|
opts = {
|
|
-- Place your configuration here (see details below)
|
|
}
|
|
},
|
|
{
|
|
'taku25/UCM.nvim',
|
|
dependencies = {
|
|
"taku25/UNL.nvim", -- Required!
|
|
-- Either one
|
|
"nvim-telescope/telescope.nvim", -- optional
|
|
},
|
|
opts = {
|
|
-- Configure as you see fit
|
|
},
|
|
},
|
|
}
|