mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-02-03 12:48:27 +00:00
20 lines
567 B
Plaintext
20 lines
567 B
Plaintext
# lakka exports
|
|
|
|
## LUA
|
|
x-have luarocks && $(luarocks path --bin)
|
|
|
|
export PATH="$HOME/.local/go/bin:$PATH"
|
|
|
|
alias logrotate='/usr/sbin/logrotate -s $HOME/logs/state'
|
|
alias nano='nano -wS -$'
|
|
alias gpg=gpg2
|
|
|
|
ACME_PATH="$HOME/.acme.sh"
|
|
# shellcheck source=$HOME/.acme.sh/acme.sh.env
|
|
[[ -s "$ACME_PATH/acme.sh.env" ]] && . "$ACME_PATH/acme.sh.env"
|
|
|
|
export RVM_PATH="$HOME/.rvm"
|
|
export PATH="$RVM_PATH/bin:$PATH"
|
|
# shellcheck source=$HOME/.rvm/scripts/rvm
|
|
[[ -s "$RVM_PATH/scripts/rvm" ]] && source "$RVM_PATH/scripts/rvm" # Load RVM into a shell session *as a function*
|