38 lines
1.2 KiB
Fish
38 lines
1.2 KiB
Fish
# sane ls colors
|
|
set --export --universal LS_COLORS 'ow=01;36;40'
|
|
set --export --universal EXA_COLORS '*=0'
|
|
|
|
# iex history
|
|
set --export --universal ERL_AFLAGS "-kernel shell_history enabled -kernel shell_history_file_bytes 1024000"
|
|
|
|
set --export --universal TERMINAL kitty
|
|
set --export --universal TERMINAL_ARGS '--single-instance'
|
|
set --export --universal BROWSER firefox
|
|
|
|
# TODO: use the text editor?
|
|
set --export --universal PAGER "less"
|
|
set --export --universal MANPAGER "less"
|
|
|
|
if command --search --quiet hx
|
|
set --export --universal EDITOR hx
|
|
set --export --universal VISUAL hx
|
|
alias helix hx
|
|
else if command --search --quiet helix
|
|
set --export --universal EDITOR helix
|
|
set --export --universal VISUAL helix
|
|
alias hx helix
|
|
else if command --search --quiet nvim
|
|
set --export --universal EDITOR nvim
|
|
set --export --universal VISUAL nvim
|
|
else if command --search --quiet vim
|
|
set --export --universal EDITOR vim
|
|
set --export --universal VISUAL vim
|
|
else if command --search --quiet vi
|
|
set --export --universal EDITOR vi
|
|
set --export --universal VISUAL vi
|
|
end
|
|
|
|
set --export --universal SOPS_AGE_KEY_FILE "$XDG_CONFIG_HOME/sops/age/keys.txt"
|
|
|
|
# has_command fd && set -Ux FZF_DEFAULT_COMMAND 'fd --type f --hidden --follow --exclude .git'
|