diff --git a/fish/.config/fish/conf.d/abbr.fish b/fish/.config/fish/conf.d/abbr.fish index a2ef50f..20c8dfb 100644 --- a/fish/.config/fish/conf.d/abbr.fish +++ b/fish/.config/fish/conf.d/abbr.fish @@ -36,3 +36,7 @@ end # path abbr -a ... cd ../.. abbr -a .... cd ../../.. + +# pixi +abbr -a pxi pixi global install +abbr -a pxs pixi global sync diff --git a/fish/.config/fish/config.fish b/fish/.config/fish/config.fish index 1a056cd..932dea0 100644 --- a/fish/.config/fish/config.fish +++ b/fish/.config/fish/config.fish @@ -35,4 +35,5 @@ 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 index 63278da..abde66c 100644 --- a/pixi/.pixi/manifests/pixi-global.toml +++ b/pixi/.pixi/manifests/pixi-global.toml @@ -19,3 +19,13 @@ exposed = { lf = "lf" } channels = ["conda-forge"] dependencies = { eza = "*" } exposed = { eza = "eza" } + +[envs.micro] +channels = ["conda-forge"] +dependencies = { micro = "*" } +exposed = { micro = "micro" } + +[envs.bat] +channels = ["conda-forge"] +dependencies = { bat = "*" } +exposed = { bat = "bat" }