mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-02-08 05:46:32 +00:00
Drop config folders (aerospace, aqua, asdf, direnv, flipperdevices, ghostty, htop, misc, nano, task, tealdeer, tms, wtf, yamlfmt, yamllint) along with starship.toml, nbrc, and aerospace scripts/docs. Clean up references in dfm, _dfm completions, bashrc, exports, and exports-lakka to match.
25 lines
606 B
Plaintext
25 lines
606 B
Plaintext
# lakka exports
|
|
|
|
## LUA
|
|
if command -v luarocks &> /dev/null; then
|
|
eval "$(luarocks path --bin)"
|
|
fi
|
|
|
|
export PATH="$HOME/.local/go/bin:$PATH"
|
|
|
|
alias logrotate='/usr/sbin/logrotate -s "$HOME/logs/state"'
|
|
alias gpg=gpg2
|
|
|
|
ACME_PATH="$HOME/.acme.sh"
|
|
# shellcheck source=$HOME/.acme.sh/acme.sh.env
|
|
if [[ -s "$ACME_PATH/acme.sh.env" ]]; then
|
|
source "$ACME_PATH/acme.sh.env"
|
|
fi
|
|
|
|
export RVM_PATH="$HOME/.rvm"
|
|
export PATH="$RVM_PATH/bin:$PATH"
|
|
# shellcheck source=$HOME/.rvm/scripts/rvm
|
|
if [[ -s "$RVM_PATH/scripts/rvm" ]]; then
|
|
source "$RVM_PATH/scripts/rvm" # Load RVM into a shell session *as a function*
|
|
fi
|