Local fish overrides. Some path enhancements

This commit is contained in:
2023-01-19 11:59:51 +01:00
parent 311d6a678b
commit 2d63016f8a
2 changed files with 15 additions and 0 deletions

View File

@@ -2,7 +2,9 @@ set -x DOTFILES $HOME/dotfiles
if test -z "$FISH_SETUP_PATH"
set -xp PATH $HOME/.pyenv/bin
set -xp PATH $HOME/.local/bin
set -xp PATH $HOME/dotfiles/bin
set -xp PATH $HOME/bin
set -xp PATH .
set -x FISH_SETUP_PATH
@@ -21,3 +23,14 @@ end
alias dc="docker-compose"
alias drh="docker run -it --rm -v (pwd):/usr/(pwd) -w /usr/(pwd)"
fish_vi_key_bindings
# Include local config if present
if test -r $DOTFILES/fish/local.fish
source $DOTFILES/fish/local.fish
end