From 6ba945b00fc8db9653770e31b4616822fa903565 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christopher=20M=C3=BChl?= Date: Mon, 16 Feb 2026 10:22:47 +0100 Subject: [PATCH] Add shell configuration for endurance --- home/by-host/endurance/config/shell.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 home/by-host/endurance/config/shell.nix diff --git a/home/by-host/endurance/config/shell.nix b/home/by-host/endurance/config/shell.nix new file mode 100644 index 0000000..1a40b6c --- /dev/null +++ b/home/by-host/endurance/config/shell.nix @@ -0,0 +1,14 @@ +{pkgs, ...}: { + programs.fish = { + enable = true; + + interactiveShellInit = '' + # Kitty shell integration - enables command markers and sticky command display + if set -q KITTY_INSTALLATION_DIR + set --global KITTY_SHELL_INTEGRATION enabled + source "$KITTY_INSTALLATION_DIR/shell-integration/fish/vendor_conf.d/kitty-shell-integration.fish" + set --prepend fish_complete_path "$KITTY_INSTALLATION_DIR/shell-integration/fish/vendor_completions.d" + end + ''; + }; +}