Local fish overrides. Some path enhancements
This commit is contained in:
parent
311d6a678b
commit
2d63016f8a
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
fish/fish_variables
|
||||||
|
fish/local.fish
|
@ -2,7 +2,9 @@ set -x DOTFILES $HOME/dotfiles
|
|||||||
|
|
||||||
if test -z "$FISH_SETUP_PATH"
|
if test -z "$FISH_SETUP_PATH"
|
||||||
set -xp PATH $HOME/.pyenv/bin
|
set -xp PATH $HOME/.pyenv/bin
|
||||||
|
set -xp PATH $HOME/.local/bin
|
||||||
set -xp PATH $HOME/dotfiles/bin
|
set -xp PATH $HOME/dotfiles/bin
|
||||||
|
set -xp PATH $HOME/bin
|
||||||
set -xp PATH .
|
set -xp PATH .
|
||||||
|
|
||||||
set -x FISH_SETUP_PATH
|
set -x FISH_SETUP_PATH
|
||||||
@ -21,3 +23,14 @@ end
|
|||||||
|
|
||||||
alias dc="docker-compose"
|
alias dc="docker-compose"
|
||||||
alias drh="docker run -it --rm -v (pwd):/usr/(pwd) -w /usr/(pwd)"
|
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
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user