Initial commit.
This commit is contained in:
		
							
								
								
									
										3
									
								
								config.fish
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								config.fish
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,3 @@ | ||||
| if status is-interactive | ||||
|     # Commands to run in interactive sessions can go here | ||||
| end | ||||
							
								
								
									
										42
									
								
								fish_variables
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										42
									
								
								fish_variables
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,42 @@ | ||||
| # This file contains fish universal variable definitions. | ||||
| # VERSION: 3.0 | ||||
| SETUVAR __fish_initialized:3800 | ||||
| SETUVAR fish_color_autosuggestion:6e738d | ||||
| SETUVAR fish_color_cancel:ed8796 | ||||
| SETUVAR fish_color_command:8aadf4 | ||||
| SETUVAR fish_color_comment:8087a2 | ||||
| SETUVAR fish_color_cwd:eed49f | ||||
| SETUVAR fish_color_cwd_root:red | ||||
| SETUVAR fish_color_end:f5a97f | ||||
| SETUVAR fish_color_error:ed8796 | ||||
| SETUVAR fish_color_escape:ee99a0 | ||||
| SETUVAR fish_color_gray:6e738d | ||||
| SETUVAR fish_color_history_current:\x2d\x2dbold | ||||
| SETUVAR fish_color_host:8aadf4 | ||||
| SETUVAR fish_color_host_remote:a6da95 | ||||
| SETUVAR fish_color_keyword:ed8796 | ||||
| SETUVAR fish_color_normal:cad3f5 | ||||
| SETUVAR fish_color_operator:f5bde6 | ||||
| SETUVAR fish_color_option:a6da95 | ||||
| SETUVAR fish_color_param:f0c6c6 | ||||
| SETUVAR fish_color_quote:a6da95 | ||||
| SETUVAR fish_color_redirection:f5bde6 | ||||
| SETUVAR fish_color_search_match:\x2d\x2dbackground\x3d363a4f | ||||
| SETUVAR fish_color_selection:\x2d\x2dbackground\x3d363a4f | ||||
| SETUVAR fish_color_status:ed8796 | ||||
| SETUVAR fish_color_user:8bd5ca | ||||
| SETUVAR fish_color_valid_path:\x2d\x2dunderline | ||||
| SETUVAR fish_key_bindings:fish_default_key_bindings | ||||
| SETUVAR fish_pager_color_background:\x1d | ||||
| SETUVAR fish_pager_color_completion:cad3f5 | ||||
| SETUVAR fish_pager_color_description:6e738d | ||||
| SETUVAR fish_pager_color_prefix:f5bde6 | ||||
| SETUVAR fish_pager_color_progress:6e738d | ||||
| SETUVAR fish_pager_color_secondary_background:\x1d | ||||
| SETUVAR fish_pager_color_secondary_completion:\x1d | ||||
| SETUVAR fish_pager_color_secondary_description:\x1d | ||||
| SETUVAR fish_pager_color_secondary_prefix:\x1d | ||||
| SETUVAR fish_pager_color_selected_background:\x1d | ||||
| SETUVAR fish_pager_color_selected_completion:\x1d | ||||
| SETUVAR fish_pager_color_selected_description:\x1d | ||||
| SETUVAR fish_pager_color_selected_prefix:\x1d | ||||
							
								
								
									
										41
									
								
								functions/fish_prompt.fish
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										41
									
								
								functions/fish_prompt.fish
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,41 @@ | ||||
| # name: Default | ||||
| # author: Lily Ballard | ||||
|  | ||||
| function fish_prompt --description 'Write out the prompt' | ||||
|     set -l last_pipestatus $pipestatus | ||||
|     set -lx __fish_last_status $status # Export for __fish_print_pipestatus. | ||||
|     set -l normal (set_color normal) | ||||
|     set -q fish_color_status | ||||
|     or set -g fish_color_status red | ||||
|  | ||||
|     # Color the prompt differently when we're root | ||||
|     set -l color_cwd $fish_color_cwd | ||||
|     set -l suffix '>' | ||||
|     if functions -q fish_is_root_user; and fish_is_root_user | ||||
|         if set -q fish_color_cwd_root | ||||
|             set color_cwd $fish_color_cwd_root | ||||
|         end | ||||
|         set suffix '#' | ||||
|     end | ||||
|  | ||||
|     # Change the prompt when inside a nix-shell | ||||
|     set -l nix_shell_info ( | ||||
|         if test -n "$IN_NIX_SHELL" | ||||
|             echo -n "<nix-shell> " | ||||
|         end | ||||
|     ) | ||||
|  | ||||
|     # Write pipestatus | ||||
|     # If the status was carried over (if no command is issued or if `set` leaves the status untouched), don't bold it. | ||||
|     set -l bold_flag --bold | ||||
|     set -q __fish_prompt_status_generation; or set -g __fish_prompt_status_generation $status_generation | ||||
|     if test $__fish_prompt_status_generation = $status_generation | ||||
|         set bold_flag | ||||
|     end | ||||
|     set __fish_prompt_status_generation $status_generation | ||||
|     set -l status_color (set_color $fish_color_status) | ||||
|     set -l statusb_color (set_color $bold_flag $fish_color_status) | ||||
|     set -l prompt_status (__fish_print_pipestatus "[" "]" "|" "$status_color" "$statusb_color" $last_pipestatus) | ||||
|  | ||||
|     echo -n -s (prompt_login)' ' (set_color -o ff1c1c) $nix_shell_info (set_color $color_cwd) (prompt_pwd) $normal (fish_vcs_prompt) $normal " " $prompt_status $suffix " " | ||||
| end | ||||
							
								
								
									
										30
									
								
								themes/Catppuccin Macchiato.theme
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										30
									
								
								themes/Catppuccin Macchiato.theme
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,30 @@ | ||||
| # name: 'Catppuccin Macchiato' | ||||
| # url: 'https://github.com/catppuccin/fish' | ||||
| # preferred_background: 24273a | ||||
|  | ||||
| fish_color_normal cad3f5 | ||||
| fish_color_command 8aadf4 | ||||
| fish_color_param f0c6c6 | ||||
| fish_color_keyword ed8796 | ||||
| fish_color_quote a6da95 | ||||
| fish_color_redirection f5bde6 | ||||
| fish_color_end f5a97f | ||||
| fish_color_comment 8087a2 | ||||
| fish_color_error ed8796 | ||||
| fish_color_gray 6e738d | ||||
| fish_color_selection --background=363a4f | ||||
| fish_color_search_match --background=363a4f | ||||
| fish_color_option a6da95 | ||||
| fish_color_operator f5bde6 | ||||
| fish_color_escape ee99a0 | ||||
| fish_color_autosuggestion 6e738d | ||||
| fish_color_cancel ed8796 | ||||
| fish_color_cwd eed49f | ||||
| fish_color_user 8bd5ca | ||||
| fish_color_host 8aadf4 | ||||
| fish_color_host_remote a6da95 | ||||
| fish_color_status ed8796 | ||||
| fish_pager_color_progress 6e738d | ||||
| fish_pager_color_prefix f5bde6 | ||||
| fish_pager_color_completion cad3f5 | ||||
| fish_pager_color_description 6e738d | ||||
		Reference in New Issue
	
	Block a user