mirror of
https://github.com/LazyVim/LazyVim.git
synced 2026-07-21 20:11:06 +00:00
Updates all `mini.nvim` plugin references to use the new `nvim-mini` organization namespace instead of the legacy `echasnovski` namespace across all LazyVim configuration files. ## Description https://github.com/nvim-mini/mini.nvim/discussions/1970 ## Checklist - [x] I've read the [CONTRIBUTING](https://github.com/LazyVim/LazyVim/blob/main/CONTRIBUTING.md) guidelines. --------- Co-authored-by: Folke Lemaitre <folke.lemaitre@gmail.com>
16 lines
485 B
Lua
16 lines
485 B
Lua
#!/usr/bin/env -S nvim -l
|
|
|
|
vim.env.LAZY_STDPATH = ".tests"
|
|
load(vim.fn.system("curl -s https://raw.githubusercontent.com/folke/lazy.nvim/main/bootstrap.lua"))()
|
|
|
|
-- Setup lazy.nvim
|
|
require("lazy.minit").setup({
|
|
spec = {
|
|
{ dir = vim.uv.cwd() },
|
|
{ "LazyVim/starter" },
|
|
{ "nvim-treesitter/nvim-treesitter" },
|
|
{ "mason-org/mason-lspconfig.nvim", version = "^1.0.0" },
|
|
{ "mason-org/mason.nvim", version = "^1.0.0" },
|
|
{ "nvim-mini/mini.icons", opts = {} },
|
|
},
|
|
})
|