Compare commits

..
2 Commits
Author SHA1 Message Date
Honney 6e9295cb57 Merge remote-tracking branch 'refs/remotes/origin/main' 2026-06-23 00:45:20 +02:00
Honney f5f703c936 added a fish color config 2026-06-23 00:31:29 +02:00
+41
View File
@@ -0,0 +1,41 @@
# Matugen-generated colors for fish + bobthefish
# Sourced by ~/.config/fish/configs/theme.fish
# Bobthefish theme colors
set -g theme_username_color {{ colors.primary.default.hex }}
set -g theme_hostname_color {{ colors.secondary.default.hex }}
set -g theme_git_branch_color {{ colors.tertiary.default.hex }}
set -g theme_git_dirty_color {{ colors.error.default.hex }}
set -g theme_git_staged_color {{ colors.primary.default.hex }}
set -g theme_pwd_color {{ colors.primary.default.hex }}
set -g theme_background_color {{ colors.surface_container_lowest.default.hex }}
set -g theme_foreground_color {{ colors.on_surface.default.hex }}
# Fish syntax highlighting colors
set --global fish_color_autosuggestion {{ colors.on_surface_variant.default.hex }}
set --global fish_color_cancel {{ colors.error.default.hex }}
set --global fish_color_command {{ colors.primary.default.hex }}
set --global fish_color_comment {{ colors.outline.default.hex }}
set --global fish_color_cwd {{ colors.primary.default.hex }}
set --global fish_color_cwd_root {{ colors.error.default.hex }}
set --global fish_color_end {{ colors.secondary.default.hex }}
set --global fish_color_error {{ colors.error.default.hex }}
set --global fish_color_escape {{ colors.tertiary.default.hex }}
set --global fish_color_history_current --bold
set --global fish_color_host {{ colors.secondary.default.hex }}
set --global fish_color_host_remote {{ colors.tertiary.default.hex }}
set --global fish_color_normal {{ colors.on_surface.default.hex }}
set --global fish_color_operator {{ colors.secondary.default.hex }}
set --global fish_color_param {{ colors.on_surface.default.hex }}
set --global fish_color_quote {{ colors.tertiary.default.hex }}
set --global fish_color_redirection {{ colors.primary.default.hex }} --bold
set --global fish_color_search_match {{ colors.on_tertiary_container.default.hex }} --background={{ colors.tertiary_container.default.hex }}
set --global fish_color_selection {{ colors.on_primary_container.default.hex }} --bold --background={{ colors.primary_container.default.hex }}
set --global fish_color_status {{ colors.error.default.hex }}
set --global fish_color_user {{ colors.primary.default.hex }}
set --global fish_color_valid_path --underline
set --global fish_pager_color_completion {{ colors.on_surface_variant.default.hex }}
set --global fish_pager_color_description {{ colors.on_surface_variant.default.hex }} -i
set --global fish_pager_color_prefix {{ colors.primary.default.hex }} --bold --underline
set --global fish_pager_color_progress {{ colors.on_primary_container.default.hex }} --background={{ colors.primary_container.default.hex }}
set --global fish_pager_color_selected_background {{ colors.secondary_container.default.hex }}