Add shell configuration for endurance

This commit is contained in:
Christopher Mühl 2026-02-16 10:22:47 +01:00
parent 8e7c1fbf16
commit 6ba945b00f

View file

@ -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
'';
};
}