1
0

fish config

This commit is contained in:
2024-05-07 11:50:00 +03:00
parent c663a3cf8a
commit 3852d0aa3e
4 changed files with 39 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
if status is-interactive
# Commands to run in interactive sessions can go here
fenv source ~/.profile
end

View File

@@ -0,0 +1,4 @@
jorgebucaran/fisher
oh-my-fish/plugin-foreign-env
jhillyerd/plugin-git
patrickf1/fzf.fish@v9.7

View File

@@ -0,0 +1,25 @@
function fish_prompt --description 'Write out the prompt'
set -l last_status $status
my_venv_prompt
prompt_login
echo -n ':'
# PWD
set_color $fish_color_cwd
echo -n (prompt_pwd)
set_color normal
__terlar_git_prompt
fish_hg_prompt
echo
if not test $last_status -eq 0
set_color $fish_color_error
end
echo -n '➤ '
set_color normal
end

View File

@@ -0,0 +1,5 @@
function my_venv_prompt -d "Custom venv prompt part"
if set -q VIRTUAL_ENV
echo -n -s (set_color -b blue white) "(" (basename "$VIRTUAL_ENV") ")" (set_color normal) " "
end
end