From 59d03e76d97342ef2e155b28554fbe16947f3981 Mon Sep 17 00:00:00 2001 From: Austin Horstman Date: Sat, 14 Sep 2024 11:26:36 -0500 Subject: [PATCH] colorschemes/palette: use lsp package --- plugins/colorschemes/palette.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/colorschemes/palette.nix b/plugins/colorschemes/palette.nix index e4ccca4f..3f1c83ad 100644 --- a/plugins/colorschemes/palette.nix +++ b/plugins/colorschemes/palette.nix @@ -1,6 +1,6 @@ { + config, lib, - pkgs, ... }: let @@ -18,7 +18,7 @@ lib.nixvim.neovim-plugin.mkNeovimPlugin { # Annoyingly, lspconfig is required, otherwise this line is breaking: # https://github.com/roobert/palette.nvim/blob/a808c190a4f74f73782302152ebf323660d8db5f/lua/palette/init.lua#L45 # An issue has been opened upstream to warn the maintainer: https://github.com/roobert/palette.nvim/issues/2 - pkgs.vimPlugins.nvim-lspconfig + config.plugins.lsp.package ]; # TODO introduced 2024-04-07: remove 2024-06-07