16 lines
483 B
Fish
16 lines
483 B
Fish
if status is-interactive
|
|
# Commands to run in interactive sessions can go here
|
|
end
|
|
|
|
# Color fix
|
|
set -x fish_color_user --bold green
|
|
|
|
# For informative git prompt
|
|
set -x __fish_git_prompt_show_informative_status 1
|
|
set -x __fish_git_prompt_showuntrackedfiles 1
|
|
set -x __fish_git_prompt_color_untrackedfiles --bold red
|
|
set -x __fish_git_prompt_showdirtystate 1
|
|
set -x __fish_git_prompt_showcolorhints 1
|
|
|
|
# Aliases
|
|
abbr --add dotfiles git --git-dir=$HOME/.dotfiles --work-tree=$HOME
|