nvim: fix colorscheme dependencies

This commit is contained in:
Robert Perce 2026-03-23 14:04:07 -05:00
parent e98353216a
commit 4d423c0952
3 changed files with 3 additions and 2 deletions

View file

@ -2,7 +2,7 @@ return {
-- cutesy indent lines -- cutesy indent lines
{ {
'lukas-reineke/indent-blankline.nvim', 'lukas-reineke/indent-blankline.nvim',
dependencies = { 'catppuccin' }, dependencies = { 'colorscheme' },
config = function() config = function()
local highlight = { local highlight = {
"RainbowRed", "RainbowRed",

View file

@ -2,6 +2,7 @@ return {
{ {
"catppuccin/nvim", "catppuccin/nvim",
name = "colorscheme", name = "colorscheme",
lazy = false,
priority = 1000, priority = 1000,
config = function() config = function()
require('catppuccin').setup({ require('catppuccin').setup({

View file

@ -2,7 +2,7 @@ return {
-- cool command-nesting -- cool command-nesting
{ {
'anuvyklack/hydra.nvim', 'anuvyklack/hydra.nvim',
dependencies = { 'catppuccin' }, dependencies = { 'colorscheme' },
config = function() config = function()
package.loaded['hydras'] = nil package.loaded['hydras'] = nil
require 'hydras' require 'hydras'