]> git.rmz.io Git - dotfiles.git/commitdiff
lazyvim: disable LazyVim
authorSamir Benmendil <me@rmz.io>
Sun, 23 Feb 2025 14:22:43 +0000 (14:22 +0000)
committerSamir Benmendil <me@rmz.io>
Sun, 2 Mar 2025 16:17:49 +0000 (16:17 +0000)
nvim/init.lua
nvim/lua/config/lazy.lua
nvim/lua/plugins/coding.lua
nvim/lua/plugins/core.lua

index 12d1f377a70116cc4a5c4e20d916574d7bef721a..13a0be54886f00ab9ed7f318deb8431a6df7a5c2 100644 (file)
@@ -6,6 +6,4 @@ vim.g.autoformat = false
 
 _G.rmz = require("rmz.util")
 
--- bootstrap lazy.nvim, LazyVim and your plugins
-package.loaded["lazyvim.config.options"] = true
 require("config")
index 68de635ef3d263c773976b442beae97e17577e4c..79543245d9d045b57e7751d3ab71038f430a5850 100644 (file)
@@ -8,13 +8,6 @@ vim.opt.rtp:prepend(vim.env.LAZY or lazypath)
 
 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" },
   },
index 43ce1e09f46f109bb66f0a66c7fdfaf57728c4ab..4fe8c083086078e9254fe56b2bc5a828270a0a65 100644 (file)
@@ -163,7 +163,6 @@ return {
     opts = {
       library = {
         { path = "${3rd}/luv/library", words = { "vim%.uv" } },
-        { path = "LazyVim", words = { "LazyVim" } },
         { path = "snacks.nvim", words = { "Snacks" } },
         { path = "lazy.nvim", words = { "LazySpec" } },
       },
index b3f49a209ec339c012368624f4d3d1873bb258c6..3e7ee82c08deb793c3f69d8053fdd2c7ecc763b5 100644 (file)
@@ -1,17 +1,6 @@
----@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,
   }