diff options
Diffstat (limited to '.config/fish/config.fish')
-rw-r--r-- | .config/fish/config.fish | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/.config/fish/config.fish b/.config/fish/config.fish deleted file mode 100644 index dc8bd14..0000000 --- a/.config/fish/config.fish +++ /dev/null @@ -1,33 +0,0 @@ -# config.fish -# _ -# | | ___ ___ -# _ | |/ _ \ / _ \ -# | |_| | (_) | __/ -# \___/ \___/ \___| - -source $HOME/.config/env - -export LESS_TERMCAP_mb=(printf '\e[1;31m') -export LESS_TERMCAP_md=(printf '\e[1;31m') -export LESS_TERMCAP_me=(printf '\e[0m') -export LESS_TERMCAP_so=(printf '\e[1;33;40m') -export LESS_TERMCAP_se=(printf '\e[0m') -export LESS_TERMCAP_us=(printf '\e[0;4;35m') -export LESS_TERMCAP_ue=(printf '\e[0m') - -source $HOME/.config/fish/alias.fish - -fish_vi_key_bindings -set fish_greeting -function fish_mode_prompt -end - -function fish_prompt - printf "\033[1;31m%s \033[1;34m%s\033[1;31m> \033[0m" (prompt_hostname) (prompt_pwd) -end -function fish_right_prompt - set -l last_pipestatus $pipestatus - set -l last_status $status - set -l prompt_status (__fish_print_pipestatus " " "" "|" (set_color $fish_color_status) (set_color --bold $fish_color_status) $last_pipestatus) - printf "%s \033[1;31m%s\033[0m" (fish_vcs_prompt) $prompt_status -end |