22 lines
626 B
Cheetah
22 lines
626 B
Cheetah
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
|
|
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 {{ .path }}
|
|
fish_vi_key_bindings
|
|
|
|
atuin init fish | source
|
|
zoxide init fish | source
|
|
starship init fish | source
|
|
end
|