lots of stuff

This commit is contained in:
gwg313 2026-01-04 10:27:19 -05:00
parent ccf213f488
commit 49cca73363
Signed by: gwg313
GPG key ID: 60FF63B4826B7400
29 changed files with 471 additions and 235 deletions

View file

@ -0,0 +1,23 @@
{
lib,
vimUtils,
fetchFromGitHub,
}:
vimUtils.buildVimPlugin {
pname = "oasis.nvim";
version = "unstable-2025-11-11";
src = fetchFromGitHub {
owner = "uhs-robert";
repo = "oasis.nvim";
rev = "691703cb10ceb425cf18a95262051b4b1bc1b5c7";
hash = "sha256-knMmbmxD+78cnuSu4LGiCISr3Gt6ieYY22SaTYKtTec=";
};
meta = with lib; {
description = "A collection of 18 desert-inspired Neovim colorschemes.";
homepage = "https://github.com/uhs-robert/oasis.nvim";
license = licenses.mit;
platforms = platforms.all;
};
}