dotfiles/.config/fish/config.fish

29 lines
828 B
Fish
Raw Normal View History

2022-10-14 13:46:51 +01:00
if status is-interactive
# Commands to run in interactive sessions can go here
end
2022-12-01 15:59:06 +00:00
fish_default_key_bindings
2023-04-13 17:13:06 +01:00
set -gx EDITOR nvim
2023-06-28 00:33:59 +01:00
set -gx READER mupdf
2022-12-13 15:43:36 +00:00
2023-09-18 07:20:52 +01:00
fish_add_path $HOME/.bun/bin
fish_add_path $HOME/go/bin
fish_add_path $HOME/.local/share/nvim/mason/bin
2022-12-01 15:59:06 +00:00
fish_add_path /home/afonso/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/bin
2023-03-18 02:30:02 +00:00
fish_add_path $HOME/.local/bin
fish_add_path $HOME/.cargo/bin
fish_add_path $HOME/.ghcup/bin
2023-09-18 07:20:52 +01:00
fish_add_path /var/lib/flatpak/exports/bin
2023-03-17 15:06:26 +00:00
source ~/.config/fish/myfunctions/code.fish
source ~/.config/fish/myfunctions/dotfiles.fish
source ~/.config/fish/myfunctions/pacman.fish
2023-03-17 15:06:26 +00:00
source ~/.config/fish/myfunctions/qol.fish
2023-04-13 17:13:06 +01:00
source ~/.config/fish/myfunctions/replacements.fish
2023-06-02 02:12:36 +01:00
starship init fish | source
2023-09-18 07:20:52 +01:00
# bun
set --export BUN_INSTALL "$HOME/.bun"
set --export PATH $BUN_INSTALL/bin $PATH