neovim: Drop chameleon.nvim

Not interested in dealing with fixing the nixf-tidy issue here which
would cause a massive formatting diff with nixfmt-rfc-style. Might
upstream later or find a better solution without chameleon.nvim.
This commit is contained in:
Donovan Glover 2024-08-09 19:52:32 -04:00
parent 2dba93e179
commit 84e38fc2b1
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
2 changed files with 0 additions and 34 deletions

View File

@ -142,14 +142,6 @@
require("ibl").setup()
'';
}
{
plugin = pkgs.callPackage ../packages/chameleon-nvim.nix { };
type = "lua";
config = # lua
''
require("chameleon").setup()
'';
}
{
plugin = gitsigns-nvim;
type = "lua";

View File

@ -1,26 +0,0 @@
{
lib,
vimUtils,
fetchFromGitHub,
}:
vimUtils.buildVimPlugin {
pname = "chameleon-nvim";
version = "0-unstable-2024-03-19";
src = fetchFromGitHub {
owner = "shaun-mathew";
repo = "Chameleon.nvim";
rev = "d682b970cc75a66c40cab77ab956ef44b0f82cd8";
hash = "sha256-RRFTlybAlTbAuP1cU3WJVk8FZGvQqYR7LXWxenGcY0I=";
};
meta = {
description = "Sync kitty's background color with your neovim colorscheme";
homepage = "https://github.com/shaun-mathew/Chameleon.nvim";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ donovanglover ];
mainProgram = "chameleon-nvim";
platforms = lib.platforms.all;
};
}