dotfiles/config/fish/config.fish

25 lines
484 B
Fish

set -g GOPATH $HOME/go
set -g GOBIN $GOPATH/bin
set -g PATH $GOBIN $PATH
set -g PATH $HOME/bin $PATH
set -g PATH $HOME/.local/bin $PATH
set -g PATH $HOME/.bun/bin $PATH
set -g PATH node_modules/.bin $PATH
if type -q nvim
set -gx EDITOR nvim
set -gx VISUAL nvim
end
if status is-interactive
starship init fish | source
zoxide init fish | source
mise activate fish | source
direnv hook fish | source
function fish_user_key_bindings
fish_vi_key_bindings
end
end