Add compatability for zsh to gitprompt
This helps with the shell shifting the cursor around
This commit is contained in:
parent
721ce3c069
commit
e86768299c
2 changed files with 23 additions and 2 deletions
21
devshells/texlive-with-pygments/flake.nix
Normal file
21
devshells/texlive-with-pygments/flake.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
description = "Flake for TeXlive with python pygments";
|
||||
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11";
|
||||
inputs.systems.url = "github:nix-systems/default";
|
||||
inputs.flake-utils = {
|
||||
url = "github:numtide/flake-utils";
|
||||
inputs.systems.follows = "systems";
|
||||
};
|
||||
|
||||
outputs =
|
||||
{ nixpkgs, flake-utils, ... }:
|
||||
flake-utils.lib.eachDefaultSystem (
|
||||
system:
|
||||
let
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
in
|
||||
{
|
||||
devShells.default = pkgs.mkShell { packages = with pkgs; [ texliveFull python3Packages.pygments ]; };
|
||||
}
|
||||
);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue