fix!: move all lazyvim extras into a single file

This is a necessary change to ensure they are loaded before any other
plugins.
Prevents a warning message at startup.
This commit is contained in:
2025-02-08 20:28:57 -05:00
parent 0e7befb507
commit 816eca31b7
13 changed files with 179 additions and 152 deletions
+12 -2
View File
@@ -20,13 +20,18 @@ vim.opt.rtp:prepend(vim.env.LAZY or lazypath)
-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ PLUGINS ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
local plugin_specs = {
{ -- LazyVim
'LazyVim/LazyVim',
priority = 900,
opts = require('data.types').lazyvim.opts,
},
{
'LazyVim/LazyVim', -- LazyVim
import = 'lazyvim.plugins', -- LazyVim Core Plugins
},
{ -- VSCode
import = 'lazyvim.plugins.extras.vscode',
},
{ import = 'lvplugs' }, -- LazyVim Plugins
{ import = 'plugins' }, -- General Plugins
}
@@ -53,7 +58,12 @@ require('lazy').setup({
},
install = {
missing = true,
colorscheme = { 'catppuccin-mocha', 'tokyonight', 'default' },
colorscheme = {
-- 'ex-catppuccin-mocha',
'catppuccin-mocha',
'tokyonight',
'default',
},
},
defaults = {
lazy = true,