mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
plugins/vim-css-color: init (#1335)
This commit is contained in:
parent
d248bf587c
commit
5fb9f0bb86
4 changed files with 28 additions and 0 deletions
|
@ -22,4 +22,14 @@
|
|||
{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";}
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -186,6 +186,7 @@
|
|||
./utils/toggleterm.nix
|
||||
./utils/undotree.nix
|
||||
./utils/vim-bbye.nix
|
||||
./utils/vim-css-color.nix
|
||||
./utils/vim-matchup.nix
|
||||
./utils/which-key.nix
|
||||
./utils/wilder.nix
|
||||
|
|
12
plugins/utils/vim-css-color.nix
Normal file
12
plugins/utils/vim-css-color.nix
Normal 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];
|
||||
}
|
5
tests/test-sources/plugins/utils/vim-css-color.nix
Normal file
5
tests/test-sources/plugins/utils/vim-css-color.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
empty = {
|
||||
plugins.vim-css-color.enable = true;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue