Files
superior_dotfiles/private_dot_config/private_fish/config.fish
Szymon P 757b351010 Update .config/btop/btop.conf
Update .config/fish/config.fish
Update .config/fish/functions/fish_prompt.fish
2026-01-07 11:27:02 +01:00

29 lines
651 B
Fish

if status is-interactive
# editors for yazi
export EDITOR="nvim"
export VISUAL="nvim"
# better shell history
atuin init fish | source
# no dum greeting
set fish_greeting ""
# yes, please setup git for me
gh auth setup-git
# add github ssh key
eval (ssh-agent -c)
ssh-add ~/.ssh/github
# add github gpg key
set -gx GPG_TTY (tty)
# vi mode
fish_vi_key_bindings
# better cd
zoxide init fish | source
clear
fastfetch --config ~/.config/fastfetch/startup.jsonc
end
# Added by LM Studio CLI (lms)
set -gx PATH $PATH /home/szymon/.lmstudio/bin
# End of LM Studio CLI section