72 lines
2.1 KiB
Bash
72 lines
2.1 KiB
Bash
|
|
# There are some important env vars that need to exist
|
|
export EWCONFIG_ROOT="$HOME/.config/ewconfig"
|
|
|
|
# Auto-detect if we are running inside of ISH (IOS Shell)
|
|
if [ $(uname -r | grep -c "\-ish$") -gt 0 ]; then
|
|
export EWCONFIG_IN_ISH=1
|
|
fi
|
|
|
|
# Load my custom prompt and macros
|
|
. $EWCONFIG_ROOT/configs/shells/zsh/prompt.sh
|
|
. $EWCONFIG_ROOT/configs/shells/zsh/macros.sh
|
|
. $EWCONFIG_ROOT/configs/shells/zsh/keybinds.sh
|
|
. $EWCONFIG_ROOT/configs/shells/zsh/autocomplete.sh
|
|
|
|
# Load per-host configuration
|
|
if [ -f $EWCONFIG_ROOT/configs/zsh/by_host/$HOSTNAME.sh ]; then
|
|
. $EWCONFIG_ROOT/configs/shells/zsh/by_host/$HOSTNAME.sh
|
|
fi
|
|
|
|
# Show some host info
|
|
. $EWCONFIG_ROOT/configs/shells/bash/info.sh
|
|
|
|
# I always want my ~/bin to be in my PATH
|
|
export PATH="$HOME/bin:$PATH"
|
|
export PATH="$EWCONFIG_ROOT/scripts:$PATH"
|
|
export PATH="$HOME/.local/bin:$PATH"
|
|
|
|
# Make sure libs can be found
|
|
export LD_LIBRARY_PATH="/usr/local/lib:$LD_LIBRARY_PATH"
|
|
export LD_LIBRARY_PATH="/usr/local/lib64:$LD_LIBRARY_PATH"
|
|
|
|
# I want to be able to load my custom python modules
|
|
export PYTHONPATH="$EWCONFIG_ROOT/python_modules:$PYTHONPATH"
|
|
export PYTHONSTARTUP="$EWCONFIG_ROOT/configs/python/python_startup.py"
|
|
|
|
# Configure a sane default editor
|
|
if type -p nvim > /dev/null; then
|
|
export EDITOR="nvim"
|
|
elif type -p vim > /dev/null; then
|
|
export EDITOR="vim"
|
|
elif type -p vi > /dev/null; then
|
|
export EDITOR="vi"
|
|
elif type -p nano > /dev/null; then
|
|
export EDITOR="nano"
|
|
fi
|
|
|
|
# If we have neovim, use it as the manpage viewer
|
|
if type -p nvim > /dev/null; then
|
|
export MANPAGER="nvim +Man!"
|
|
export MANWIDTH=80
|
|
fi
|
|
|
|
# Search for ewconfig modules that need to be loaded
|
|
for module in $(find $EWCONFIG_ROOT/modules -maxdepth 1 -mindepth 1 -type d); do
|
|
# If this module contains a `bin` directory, add it to the PATH
|
|
if [ -d "$module/bin" ]; then
|
|
export PATH="$module/bin:$PATH"
|
|
fi
|
|
done
|
|
|
|
# SDKMAN!
|
|
export SDKMAN_DIR="$HOME/.sdkman"
|
|
[[ -s "$HOME/.sdkman/bin/sdkman-init.sh" ]] && source "$HOME/.sdkman/bin/sdkman-init.sh"
|
|
|
|
# Flutter
|
|
[[ -s "$HOME/pkg/flutter/bin" ]] && export PATH="$HOME/pkg/flutter/bin:$PATH"
|
|
|
|
# Rye
|
|
[[ -s "$HOME/.rye/env" ]] && source "$HOME/.rye/env"
|
|
|