plugins/vim-css-color: init (#1335)

This commit is contained in:
Bodleum 2024-03-27 20:55:24 +00:00 committed by GitHub
parent d248bf587c
commit 5fb9f0bb86
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 28 additions and 0 deletions

View file

@ -22,4 +22,14 @@
{fingerprint = "7082 22EA 1808 E39A 83AC 8B18 4F91 844C ED1A 8299";} {fingerprint = "7082 22EA 1808 E39A 83AC 8B18 4F91 844C ED1A 8299";}
]; ];
}; };
DanielLaing = {
email = "daniel@daniellaing.com";
matrix = "@bodleum:matrix.org";
github = "Bodleum";
githubId = 60107449;
name = "Daniel Laing";
keys = [
{fingerprint = "0821 8B96 DC73 85E5 BB7C A535 D264 3BD2 13BC 0FA8";}
];
};
} }

View file

@ -186,6 +186,7 @@
./utils/toggleterm.nix ./utils/toggleterm.nix
./utils/undotree.nix ./utils/undotree.nix
./utils/vim-bbye.nix ./utils/vim-bbye.nix
./utils/vim-css-color.nix
./utils/vim-matchup.nix ./utils/vim-matchup.nix
./utils/which-key.nix ./utils/which-key.nix
./utils/wilder.nix ./utils/wilder.nix

View file

@ -0,0 +1,12 @@
{
config,
helpers,
pkgs,
...
}:
helpers.vim-plugin.mkVimPlugin config {
name = "vim-css-color";
defaultPackage = pkgs.vimPlugins.vim-css-color;
maintainers = [helpers.maintainers.DanielLaing];
}

View file

@ -0,0 +1,5 @@
{
empty = {
plugins.vim-css-color.enable = true;
};
}