Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
33 lines (29 sloc)
1.02 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source ~/.config/fish/alias.fish | |
# Configure Jump | |
status --is-interactive; and source (jump shell fish | psub) | |
# Load all saved ssh keys | |
/usr/bin/ssh-add -A ^/dev/null | |
# Fish syntax highlighting | |
set -g fish_color_autosuggestion '555' 'brblack' | |
set -g fish_color_cancel -r | |
set -g fish_color_command --bold | |
set -g fish_color_comment red | |
set -g fish_color_cwd green | |
set -g fish_color_cwd_root red | |
set -g fish_color_end brmagenta | |
set -g fish_color_error brred | |
set -g fish_color_escape 'bryellow' '--bold' | |
set -g fish_color_history_current --bold | |
set -g fish_color_host normal | |
set -g fish_color_match --background=brblue | |
set -g fish_color_normal normal | |
set -g fish_color_operator bryellow | |
set -g fish_color_param cyan | |
set -g fish_color_quote yellow | |
set -g fish_color_redirection brblue | |
set -g fish_color_search_match 'bryellow' '--background=brblack' | |
set -g fish_color_selection 'white' '--bold' '--background=brblack' | |
set -g fish_color_user brgreen | |
set -g fish_color_valid_path --underline | |
# Install Starship | |
starship init fish | source |