_G.rmz = require("rmz.util")
--- bootstrap lazy.nvim, LazyVim and your plugins
-package.loaded["lazyvim.config.options"] = true
require("config")
require("lazy").setup({
spec = {
- -- add LazyVim and import its plugins
- { "LazyVim/LazyVim", import = "lazyvim.plugins" },
- -- import any extras modules here
- -- { import = "lazyvim.plugins.extras.lang.typescript" },
- -- { import = "lazyvim.plugins.extras.lang.json" },
- -- { import = "lazyvim.plugins.extras.ui.mini-animate" },
- -- import/override with your plugins
{ import = "plugins" },
{ import = "plugins.lang" },
},
opts = {
library = {
{ path = "${3rd}/luv/library", words = { "vim%.uv" } },
- { path = "LazyVim", words = { "LazyVim" } },
{ path = "snacks.nvim", words = { "Snacks" } },
{ path = "lazy.nvim", words = { "LazySpec" } },
},
----@type LazyPluginSpec
+---@type LazySpec
return {
- {
- "LazyVim/LazyVim",
- opts = {
- defaults = {
- autocmds = false,
- options = false,
- keymaps = false,
- },
- },
- },
- {
- "vhyrro/luarocks.nvim",
+ { "vhyrro/luarocks.nvim",
priority = 1000,
config = true,
}