dotfiles/dot_config/fish/config.fish

21 lines
626 B
Fish
Raw Normal View History

if status is-interactive
set -gx EDITOR nvim
set -gx LC_ALL en_US.UTF-8
set -gx LANG en_US.UTF-8
set -gx FZF_DEFAULT_COMMAND "fd --type file --color=always"
set -gx GOPATH $HOME/go
set -gx GPG_TTY $(tty)
set -gx CC "clang-16"
set -g PERL5LIB $HOME/perl5/lib/perl5
set -g PERL_LOCAL_LIB_ROOT $HOME/perl5
set -g PERL_MB_OPT '--install_base "/home/jan/perl5"'
set -g PERL_MM_OPT 'INSTALL_BASE=/home/jan/perl5'
set -U fish_greeting
fish_add_path -g ~/.local/bin ~/.cargo/bin ~/perl5/bin /usr/local/bin /usr/local/sbin
fish_vi_key_bindings
atuin init fish | source
starship init fish | source
end