This repository has been archived on 2024-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/common/fish/vars.fish

38 lines
1.2 KiB
Fish
Raw Normal View History

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-10-11 10:11:23 -05:00
set --universal fish_cursor_insert line
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
2022-12-01 10:30:21 -06:00
else if command --search --quiet helix
set --export --universal EDITOR helix
set --export --universal VISUAL 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
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'