diff options
| author | Sam Nystrom <sam@samnystrom.dev> | 2023-04-11 15:26:48 -0500 |
|---|---|---|
| committer | Sam Nystrom <sam@samnystrom.dev> | 2023-04-11 15:26:48 -0500 |
| commit | 1c9ef9adfd61353f0a041a1bc9a09440441bb7b9 (patch) | |
| tree | cc120e40020d3efc013857854cc9fa59aba3a59d /.config/fish | |
| parent | 06e09243e3e91a4cc2b7be684376afc431468fbb (diff) | |
feat(fish): catppuccinify the TTY
Diffstat (limited to '.config/fish')
| -rw-r--r-- | .config/fish/config.fish | 35 | ||||
| -rw-r--r-- | .config/fish/fish_variables | 31 |
2 files changed, 66 insertions, 0 deletions
diff --git a/.config/fish/config.fish b/.config/fish/config.fish new file mode 100644 index 0000000..63f46f0 --- /dev/null +++ b/.config/fish/config.fish @@ -0,0 +1,35 @@ +if status is-interactive + starship init fish | source + + if $TERM = linux + printf %b '\e]P024273A' # set background color to "Base" + printf %b '\e]P85B6078' # set bright black to "Surface2" + + printf %b '\e]P7CAD3F5' # set text color to "Text" + printf %b '\e]PFA5ADCB' # set bright white to "Subtext0" + + printf %b '\e]P1ED8796' # set red to "Red" + printf %b '\e]P9ED8796' # set bright red to "Red" + + printf %b '\e]P2A6DA95' # set green to "Green" + printf %b '\e]PAA6DA95' # set bright green to "Green" + + printf %b '\e]P3EED49f' # set yellow to "Yellow" + printf %b '\e]PBEED49f' # set bright yellow to "Yellow" + + printf %b '\e]P48AADF4' # set blue to "Blue" + printf %b '\e]PC8AADF4' # set bright blue to "Blue" + + printf %b '\e]P5F5BDE6' # set magenta to "Pink" + printf %b '\e]PDF5BDE6' # set bright magenta to "Pink" + + printf %b '\e]P68BD5CA' # set cyan to "Teal" + printf %b '\e]PE8BD5CA' # set bright cyan to "Teal" + + clear + end +end + +alias ls exa + +export PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:$PATH diff --git a/.config/fish/fish_variables b/.config/fish/fish_variables new file mode 100644 index 0000000..1a82b8a --- /dev/null +++ b/.config/fish/fish_variables @@ -0,0 +1,31 @@ +# This file contains fish universal variable definitions. +# VERSION: 3.0 +SETUVAR __fish_initialized:3400 +SETUVAR fish_color_autosuggestion:555\x1ebrblack +SETUVAR fish_color_cancel:\x2dr +SETUVAR fish_color_command:blue +SETUVAR fish_color_comment:red +SETUVAR fish_color_cwd:green +SETUVAR fish_color_cwd_root:red +SETUVAR fish_color_end:green +SETUVAR fish_color_error:brred +SETUVAR fish_color_escape:brcyan +SETUVAR fish_color_history_current:\x2d\x2dbold +SETUVAR fish_color_host:normal +SETUVAR fish_color_host_remote:yellow +SETUVAR fish_color_normal:normal +SETUVAR fish_color_operator:brcyan +SETUVAR fish_color_param:cyan +SETUVAR fish_color_quote:yellow +SETUVAR fish_color_redirection:cyan\x1e\x2d\x2dbold +SETUVAR fish_color_search_match:bryellow\x1e\x2d\x2dbackground\x3dbrblack +SETUVAR fish_color_selection:white\x1e\x2d\x2dbold\x1e\x2d\x2dbackground\x3dbrblack +SETUVAR fish_color_status:red +SETUVAR fish_color_user:brgreen +SETUVAR fish_color_valid_path:\x2d\x2dunderline +SETUVAR fish_key_bindings:fish_default_key_bindings +SETUVAR fish_pager_color_completion:normal +SETUVAR fish_pager_color_description:B3A06D\x1eyellow\x1e\x2di +SETUVAR fish_pager_color_prefix:normal\x1e\x2d\x2dbold\x1e\x2d\x2dunderline +SETUVAR fish_pager_color_progress:brwhite\x1e\x2d\x2dbackground\x3dcyan +SETUVAR fish_pager_color_selected_background:\x2dr |
