32 lines
930 B
Lua
32 lines
930 B
Lua
return {
|
|
-- mini-ai for a and i selections or other --> vin" for visual in next ""
|
|
{
|
|
"echasnovski/mini.ai",
|
|
version = "false",
|
|
opts = {},
|
|
},
|
|
|
|
-- ─< mini-surround for surrounding words or lines with "" or () or '' etc.. >──────────
|
|
{
|
|
"echasnovski/mini.surround",
|
|
version = "false",
|
|
opts = {},
|
|
},
|
|
|
|
-- ─< miniIcons >───────────────────────────────────────────────────────────────────────
|
|
{
|
|
"echasnovski/mini.icons",
|
|
version = "false",
|
|
opts = {},
|
|
lazy = true,
|
|
specs = {
|
|
{ "nvim-tree/nvim-web-devicons", enabled = false, optional = true },
|
|
},
|
|
init = function()
|
|
package.preload["nvim-web-devicons"] = function()
|
|
require("mini.icons").mock_nvim_web_devicons()
|
|
return package.loaded["nvim-web-devicons"]
|
|
end
|
|
end,
|
|
},
|
|
}
|