2021-11-03 12:01:43 -05:00
|
|
|
# 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
|
2021-12-23 12:03:19 -06:00
|
|
|
set --export --universal TERMINAL_ARGS '--single-instance'
|
2022-10-19 12:42:11 -05:00
|
|
|
set --export --universal BROWSER firefox
|
2021-11-03 12:01:43 -05:00
|
|
|
|
2023-04-16 03:03:16 -05:00
|
|
|
# TODO: use the text editor?
|
2022-08-03 11:38:32 -05:00
|
|
|
set --export --universal PAGER "less"
|
|
|
|
set --export --universal MANPAGER "less"
|
2021-11-03 12:01:43 -05:00
|
|
|
|
2022-12-01 10:30:21 -06:00
|
|
|
if command --search --quiet hx
|
2022-07-19 11:21:25 -05:00
|
|
|
set --export --universal EDITOR hx
|
|
|
|
set --export --universal VISUAL hx
|
2023-06-16 22:04:12 -05:00
|
|
|
alias helix hx
|
2022-12-01 10:30:21 -06:00
|
|
|
else if command --search --quiet helix
|
|
|
|
set --export --universal EDITOR helix
|
|
|
|
set --export --universal VISUAL helix
|
2023-06-16 22:04:12 -05:00
|
|
|
alias hx helix
|
2022-09-19 21:06:03 -05:00
|
|
|
else if command --search --quiet nvim
|
|
|
|
set --export --universal EDITOR nvim
|
|
|
|
set --export --universal VISUAL nvim
|
2021-11-03 12:18:12 -05:00
|
|
|
else if command --search --quiet vim
|
|
|
|
set --export --universal EDITOR vim
|
|
|
|
set --export --universal VISUAL vim
|
|
|
|
else if command --search --quiet vi
|
2021-11-03 12:01:43 -05:00
|
|
|
set --export --universal EDITOR vi
|
|
|
|
set --export --universal VISUAL vi
|
|
|
|
end
|
|
|
|
|
2022-02-01 17:10:13 -06:00
|
|
|
set --export --universal SOPS_AGE_KEY_FILE "$XDG_CONFIG_HOME/sops/age/keys.txt"
|
|
|
|
|
2021-11-03 12:01:43 -05:00
|
|
|
# has_command fd && set -Ux FZF_DEFAULT_COMMAND 'fd --type f --hidden --follow --exclude .git'
|