Files
superior_dotfiles/private_dot_config/private_fish/config.fish
Szymon P 6256921845 Update .bashrc
Update .config/hypr/hyprland.conf
Update .config/hypr/hyprland/exec.conf
Update .config/hypr/hyprland/rules/vesktop.conf
Update .config/kitty/kitty.conf
Update .config/fish/config.fish
Update .config/gtk-3.0/settings.ini
Update .local/bin/start_coding.sh
2025-07-03 17:02:41 +02:00

22 lines
490 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
# vi mode
fish_vi_key_bindings
# better cd
zoxide init fish | source
clear
fastfetch --config ~/.config/fastfetch/startup.jsonc
end