dotfiles/.config/fish/config.fish

20 lines
338 B
Fish
Raw Normal View History

2024-02-14 21:08:45 -08:00
#!/usr/bin/env fish
2024-02-14 19:58:23 -08:00
2024-02-14 21:08:45 -08:00
# Base path.
fish_add_path /usr/local/bin "$HOME/bin"
# Projects dir.
set -gx HACK "$HOME/hackin"
# Editor.
set -gx EDITOR nvim
set -gx VISUAL "$EDITOR"
# Use vi key bindings.
set -g fish_key_bindings fish_vi_key_bindings
# Local environment variables.
if test -e "$HOME/.local.env"
source "~/.local.env"
end