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

45 lines
1.1 KiB
Fish
Raw Normal View History

2021-09-20 19:35:03 -04:00
set fish_greeting
2022-03-24 16:46:01 -04:00
fish_vi_key_bindings
set fish_bind_mode insert
theme_gruvbox dark hard
2021-09-20 19:35:03 -04:00
alias rm 'rm -i'
alias nnn 'nnn -e'
alias icat 'kitty +kitten icat'
alias magit 'emacs -nw --eval "(magit-status)"'
alias emac 'emacsclient -nw'
2021-09-20 19:35:03 -04:00
export GPG_TTY=(tty)
2022-01-24 10:37:58 -05:00
gpgconf --launch gpg-agent
if test -z (pgrep ssh-agent)
eval (ssh-agent -c) set -Ux SSH_AUTH_SOCK $SSH_AUTH_SOCK
2022-01-24 10:37:58 -05:00
set -Ux SSH_AGENT_PID $SSH_AGENT_PID
set -Ux SSH_AUTH_SOCK $SSH_AUTH_SOCK
end
set -gx MOZ_WEBRENDER 1
2021-09-20 19:35:03 -04:00
set -gx XDG_SESSION_TYPE wayland
set -gx XDG_CURRENT_DESKTOP sway
set -gx MOZ_ENABLE_WAYLAND 1
2021-11-28 15:40:48 -05:00
set -gx QT_AUTO_SCREEN_SCALE_FACTOR 1
2021-11-28 15:40:48 -05:00
set -Ux GTK_IM_MODULE ibus
set -Ux QT_IM_MODULE ibus
set -Ux XMODIFIERS @im=ibus
set -gx EDITOR lvim
2021-09-20 19:35:03 -04:00
set -gx NVIM_LISTEN_ADDRESS /tmp/nvimsocket
2022-01-24 10:37:58 -05:00
set -gx MANPAGER "lvim +Man!"
2021-09-20 19:35:03 -04:00
set -gx LC_ALL en_US.UTF-8
set -gx _JAVA_AWT_WM_NONREPARENTING 1
set -x PATH /usr/libexec /usr/local/bin /home/minhradz/.cargo/bin /home/minhradz/.local/bin /home/minhradz/go/bin /home/minhradz/.cabal/bin /home/minhradz/.local/share/gem/ruby/3.0.0/bin $PATH
2021-09-20 19:35:03 -04:00
starship init fish | source
direnv hook fish | source