nix-config/pkgs/vim-plugins/vim-caser.nix

16 lines
304 B
Nix
Raw Normal View History

{ pkgs, ... }:
2025-01-19 13:49:10 +00:00
with pkgs;
vimUtils.buildVimPlugin {
name = "vim-caser";
2025-04-23 16:21:33 +01:00
version = "2021-07-27";
2025-01-19 13:49:10 +00:00
src = fetchFromGitHub {
owner = "arthurxavierx";
repo = "vim-caser";
rev = "6bc9f41d170711c58e0157d882a5fe8c30f34bf6";
sha256 = "PXAY01O/cHvAdWx3V/pyWFeiV5qJGvLcAKhl5DQc0Ps=";
};
}