1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-31 04:04:32 +00:00

xonsh: formatting

This commit is contained in:
paki23 2025-03-19 21:36:18 +01:00
parent faed3bdfcf
commit e757c135d2
No known key found for this signature in database
GPG key ID: 13160FFB4CEB03F2
2 changed files with 12 additions and 14 deletions

View file

@ -76,7 +76,6 @@ in {
'';
};
enableNushellIntegration =
lib.hm.shell.mkNushellIntegrationOption { inherit config; };

View file

@ -197,20 +197,19 @@ in {
}
'';
xonshIntegration = ''
def _y(args):
tmp = $(mktemp -t "yazi-cwd.XXXXXX")
args.append(f"--cwd-file={tmp}")
$[yazi @(args)]
with open(tmp) as f:
cwd = f.read().strip()
if cwd != $PWD:
cd @(cwd)
rm -f -- @(tmp)
xonshIntegration = ''
def _y(args):
tmp = $(mktemp -t "yazi-cwd.XXXXXX")
args.append(f"--cwd-file={tmp}")
$[yazi @(args)]
with open(tmp) as f:
cwd = f.read().strip()
if cwd != $PWD:
cd @(cwd)
rm -f -- @(tmp)
aliases["${cfg.shellWrapperName}"] = _y
'';
aliases["${cfg.shellWrapperName}"] = _y
'';
in {
bash.initExtra = mkIf cfg.enableBashIntegration bashIntegration;