This commit is contained in:
Lucy Hochkamp 2024-04-16 20:34:59 +02:00
parent c58c137f5a
commit 7f365f0bd2
No known key found for this signature in database
3 changed files with 23 additions and 2 deletions

View file

@ -61,6 +61,20 @@ in
xontrib load direnv
xontrib load fish_completer
# >>> mamba initialize >>>
# !! Contents within this block are managed by 'mamba init' !!
$MAMBA_EXE = "/etc/profiles/per-user/xyno/bin/micromamba"
$MAMBA_ROOT_PREFIX = "/Users/xyno/micromamba"
import sys as _sys
from types import ModuleType as _ModuleType
_mod = _ModuleType("xontrib.mamba",
'Autogenerated from $($MAMBA_EXE shell hook -s xonsh -p $MAMBA_ROOT_PREFIX)')
__xonsh__.execer.exec($($MAMBA_EXE shell hook -s xonsh -p $MAMBA_ROOT_PREFIX),
glbs=_mod.__dict__,
filename='$($MAMBA_EXE shell hook -s xonsh -p $MAMBA_ROOT_PREFIX)')
_sys.modules["xontrib.mamba"] = _mod
del _sys, _mod, _ModuleType
# <<< mamba initialize <<<
'';
programs.vscode.userSettings."terminal.integrated.profiles.osx" = {
xonsh = {