dotfiles/nix/base-system/nvim-powershell.nix

12 lines
330 B
Nix
Raw Normal View History

2023-11-30 20:09:48 -05:00
{ buildGrammar, fetchFromGitHub }:
buildGrammar {
language = "powershell";
version = "0.1.0";
src = fetchFromGitHub {
owner = "powershell";
repo = "tree-sitter-powershell";
rev = "1ac090522cb339a6fd9d3ac915da01cb263d69e1";
hash = "sha256-4zGTfscK1Sjo4iKd5Go3LHVpAhQCEWCptcX4wOrZaR8=";
};
}