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/apps/shell/fish/config.fish

56 lines
1.8 KiB
Fish
Raw Normal View History

2020-01-17 03:02:53 -06:00
#!/usr/bin/env fish
set -U XDG_CONFIG_HOME $HOME/.config
set -U DOTFILES_PATH $XDG_CONFIG_HOME/dotfiles
set -U ENV_PATH $HOME/.env
2020-01-20 14:01:06 -06:00
function source_if_exists; test -f $ENV_PATH/$argv[1] && source $argv[1]; end
function maybe_source_env_file; source_if_exists $ENV_PATH/$argv[1]; end
function has_command; command -v $argv[1] 2>&1 >/dev/null; end
2020-01-17 03:02:53 -06:00
2020-01-16 17:01:59 -06:00
source $DOTFILES_PATH/apps/shell/fish/paths.fish
status --is-interactive || exit
2020-01-20 14:01:06 -06:00
for f in key-bindings colors prompt aliases
source $DOTFILES_PATH/apps/shell/fish/$f.fish
end
2020-01-16 17:01:59 -06:00
set -U _JAVA_AWT_WM_NONREPARENTING 1
2020-01-20 10:49:06 -06:00
set -U TERMINAL kitty
2020-01-16 17:01:59 -06:00
set -U BROWSER firefox-developer-edition
set -U ERL_AFLAGS "-kernel shell_history enabled -kernel shell_history_file_bytes 1024000" # iex history
# set our EDITOR to neovim if we've got it
2020-01-20 14:28:45 -06:00
set -Ux EDITOR vim
2020-01-20 14:01:06 -06:00
if has_command nvim
2020-01-16 17:01:59 -06:00
alias vim nvim
alias ovim 'command vim'
2020-01-20 14:28:45 -06:00
set -Ux EDITOR nvim
2020-01-16 17:01:59 -06:00
end
2020-01-20 10:49:06 -06:00
# load a per-device config last so anything can be overridden
# TODO: this does not work quite right for fish?
maybe_source_env_file config.fish
maybe_source_env_file .hidden/config.fish
2020-01-20 14:01:06 -06:00
mkdir -p $NOTES_PATH $USER_LOGS_PATH $SCROTS_PATH
2020-01-16 17:01:59 -06:00
command -v fd 2>&1 >/dev/null && set -U FZF_DEFAULT_COMMAND 'fd --type f --hidden --follow --exclude .git'
# we assume the user uses "$HOME" to just store their mess of dotfiles and other
# nonsense that clutters it up and that they have a preferred starting
# directory where they keep the stuff they actually care about
# we only do this if the user is opening a shell at $HOME
2020-01-20 09:12:52 -06:00
if test $PWD = $HOME; or test $PWD = $NICE_HOME;
cd $NICE_HOME || cd
end
2020-01-16 17:01:59 -06:00
test -f ~/.fzf/shell/key-bindings.fish && source ~/.fzf/shell/key-bindings.fish
if test -f $HOME/.asdf/asdf.fish
source $HOME/.asdf/asdf.fish
else if test -f /opt/asdf-vm/asdf.fish
source /opt/asdf-vm/asdf.fish
2020-01-16 17:01:59 -06:00
end