summaryrefslogtreecommitdiffstats
path: root/.config/fish/config.fish
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2022-03-22 12:49:17 +0100
committerJozanLeClerc <bousset.rudy@gmail.com>2022-03-22 12:49:17 +0100
commite51502b83f19c1923c942e2bbe6d9cdd36194ba8 (patch)
treefde91fc5959e44d965b79e98edf261c39b316af2 /.config/fish/config.fish
parentlf update again (diff)
downloaddotfiles-bsd-e51502b83f19c1923c942e2bbe6d9cdd36194ba8.tar.gz
dotfiles-bsd-e51502b83f19c1923c942e2bbe6d9cdd36194ba8.tar.bz2
dotfiles-bsd-e51502b83f19c1923c942e2bbe6d9cdd36194ba8.tar.xz
dotfiles-bsd-e51502b83f19c1923c942e2bbe6d9cdd36194ba8.tar.zst
dotfiles-bsd-e51502b83f19c1923c942e2bbe6d9cdd36194ba8.zip
removed bloat
Diffstat (limited to '')
-rw-r--r--.config/fish/config.fish33
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