Fish theming

This commit is contained in:
Marley Rae 2024-01-30 18:43:40 -08:00
parent f64a53ed80
commit 2876449ebb
3 changed files with 15 additions and 4 deletions

View file

@ -45,7 +45,3 @@ for file in (string match -r '^.*\/completion.config.fish$' $config_files)
end
set -e config_files
# Starship
set -gx STARSHIP_CONFIG "$DOT/fish/starship.toml"
starship init fish | source

View file

@ -1,10 +1,14 @@
#!/usr/bin/env fish
source "$DOT/script/utils.fish"
source "$DOT/homebrew/brew_utils.fish"
source "$DOT/node/node_utils.fish"
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
execute "fisher install catppuccin/fish" "catppuccin/fish"
execute "fisher install decors/fish-colored-man" "fish-colored-man"
brew_install "FiraCode Nerd Font" "font-fira-code-nerd-font" "" "homebrew/cask-fonts"
brew_install "Starship Prompt" "starship"
brew_install "Zsh Syntax Highlighting" "zsh-syntax-highlighting"

11
fish/theme.config.fish Normal file
View file

@ -0,0 +1,11 @@
#!/usr/bin/env fish
# fish-colored-man
set -g man_blink -o f38ba8 red
set -g man_bold -o 94e2d5 cyan
set -g man_standout -b 11111b black
set -g man_underline -u 11111b black
# Starship
set -gx STARSHIP_CONFIG "$DOT/fish/starship.toml"
starship init fish | source