From 96953438ef1102c1eca9f4b085597a359ca6c78b Mon Sep 17 00:00:00 2001 From: Dennis Date: Tue, 4 Nov 2025 09:56:03 +0100 Subject: [PATCH] fixes atuin integration and adapts colors --- modules/atuin/default.nix | 4 ++-- modules/fish/default.nix | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/modules/atuin/default.nix b/modules/atuin/default.nix index fc81af3..7b45f60 100644 --- a/modules/atuin/default.nix +++ b/modules/atuin/default.nix @@ -1,8 +1,8 @@ { programs.atuin = { enable = true; - enableBashIntegration = true; - enableFishIntegration = false; + enableBashIntegration = false; + enableFishIntegration = true; settings = { style = "compact"; inline_height = 20; diff --git a/modules/fish/default.nix b/modules/fish/default.nix index 5458012..f08cb31 100644 --- a/modules/fish/default.nix +++ b/modules/fish/default.nix @@ -136,11 +136,12 @@ set --universal fish_color_normal brwhite # default color set --universal fish_color_operator brblack # parameter expansion operators like '*' and '~' set --universal fish_color_param brmagenta # regular command parameters - set --universal fish_color_quote yellow # quoted blocks of text - set --universal fish_color_redirection brblack # IO redirections + set --universal fish_color_quote bryellow # quoted blocks of text + set --universal fish_color_redirection brwhite # IO redirections set --universal fish_color_search --bold --background=black --foreground=bryellow set --universal fish_color_search_match --background black # highlight history search matches and the selected pager item (must be a background) set --universal fish_pager_color_selected_background --background black --foreground brmagenta + set --universal fish_pager_color_progress --foreground=brwhite --background=black set --universal fish_color_selection --background magenta # when selecting text (in vi visual mode) set --universal fish_color_cancel brblack # the '^C' indicator on a canceled command set --universal fish_color_host brwhite # current host system in some of fish default prompts