sunhat/defaults/bash/shell

18 lines
466 B
Plaintext
Raw Normal View History

# 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"
# Set complete path
2024-06-09 16:29:49 -05:00
export PATH="./bin:$HOME/.local/bin:$HOME/.local/share/sunhat/bin:$HOME/.rbenv/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:$BUN_INSTALL/bin:$HOME/.cargo/bin"
set +h
2024-06-03 14:30:34 -05:00