dots/src/.config/fish/config.fish

29 lines
707 B
Fish
Raw Normal View History

2021-10-21 17:44:21 -04:00
if status is-interactive
# Commands to run in interactive sessions can go here
end
2021-10-21 20:56:16 -04:00
source ~/.config/fish/aliases.fish
2021-10-21 17:44:21 -04:00
2023-01-20 19:44:11 -05:00
source ~/.config/fish/functions/prompts.fish
source ~/.config/fish/functions/extra_prompt.fish
2022-07-05 17:20:16 -04:00
2021-10-31 15:09:26 -04:00
# Set GPG_TTY
gpgt
# Add .local/bin to path
2022-10-01 18:56:10 -04:00
set -gx PATH "$PATH:$HOME/.local/bin:"
set -gx PATH "$PATH:$HOME/.local/bin/deskutils:"
2022-10-07 19:42:19 -04:00
set -gx PATH "$PATH:$HOME/.local/bin/deskutils/soundboard:"
2022-10-01 18:56:10 -04:00
set -gx PATH "$PATH:$HOME/.local/bin/minrss-scripts:"
2021-10-31 15:09:26 -04:00
2023-01-03 13:40:35 -05:00
set -gx PATH "$PATH:$XDG_DATA_HOME/npm/bin"
2023-01-20 19:44:11 -05:00
# cppman can't set it itself for some reason
set -gx MANPATH "$MANPATH:/home/dogeystamp/.cache/cppman/"
2021-10-31 15:09:26 -04:00
# Disable fish greeting
2021-10-21 17:44:21 -04:00
set fish_greeting ""
2021-10-31 15:09:26 -04:00
# Enable Vi bindings
2021-10-21 17:44:21 -04:00
fish_vi_key_bindings