From bee7fe37637a783b49acc66dd5ad2356b1f2f829 Mon Sep 17 00:00:00 2001 From: Tim Date: Mon, 26 May 2025 18:42:17 +0200 Subject: [PATCH] Add pixi package manager --- fish/.config/fish/config.fish | 1 + pixi/.pixi/manifests/pixi-global.toml | 16 ++++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 pixi/.pixi/manifests/pixi-global.toml diff --git a/fish/.config/fish/config.fish b/fish/.config/fish/config.fish index fe7cfa5..1a056cd 100644 --- a/fish/.config/fish/config.fish +++ b/fish/.config/fish/config.fish @@ -35,3 +35,4 @@ if test -d "$FNM_PATH" set PATH "$FNM_PATH" $PATH fnm env | source end +fish_add_path /home/tim/.pixi/bin diff --git a/pixi/.pixi/manifests/pixi-global.toml b/pixi/.pixi/manifests/pixi-global.toml new file mode 100644 index 0000000..67874ff --- /dev/null +++ b/pixi/.pixi/manifests/pixi-global.toml @@ -0,0 +1,16 @@ +version = 1 + +[envs.croc] +channels = ["conda-forge"] +dependencies = { croc = "*" } +exposed = { croc = "croc" } + +[envs.lazygit] +channels = ["conda-forge"] +dependencies = { lazygit = "*" } +exposed = { lazygit = "lazygit" } + +[envs.lf] +channels = ["conda-forge"] +dependencies = { lf = "*" } +exposed = { lf = "lf" }