meow
This commit is contained in:
parent
c58c137f5a
commit
7f365f0bd2
3 changed files with 23 additions and 2 deletions
|
|
@ -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 = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue