2024-05-27 11:01:23 -05:00
|
|
|
# History control
|
|
|
|
shopt -s histappend
|
|
|
|
HISTCONTROL=ignoreboth
|
|
|
|
HISTSIZE=32768
|
|
|
|
HISTFILESIZE="${HISTSIZE}"
|
|
|
|
|
2024-06-09 05:05:28 -05:00
|
|
|
# Editor used by CLI
|
|
|
|
export EDITOR="nvim"
|
|
|
|
export SUDO_EDITOR="nvim"
|
|
|
|
|
2024-06-09 04:16:43 -05:00
|
|
|
export SUNHAT_PATH="/home/$USER/.local/share/sunhat"
|
|
|
|
export BUN_INSTALL="$HOME/.bun"
|
2024-05-27 11:01:23 -05:00
|
|
|
|
|
|
|
# Set complete path
|
2024-06-09 04:16:43 -05:00
|
|
|
export PATH="./bin:$HOME/.local/bin:$HOME/$SUNHAT_PATH/bin:$HOME/.rbenv/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:$BUN_INSTALL/bin"
|
2024-05-27 11:01:23 -05:00
|
|
|
set +h
|
2024-06-03 14:30:34 -05:00
|
|
|
|