18 lines
		
	
	
		
			466 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			466 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
# History control
 | 
						|
shopt -s histappend
 | 
						|
HISTCONTROL=ignoreboth
 | 
						|
HISTSIZE=32768
 | 
						|
HISTFILESIZE="${HISTSIZE}"
 | 
						|
 | 
						|
# Editor used by CLI
 | 
						|
export EDITOR="nvim"
 | 
						|
export SUDO_EDITOR="nvim"
 | 
						|
 | 
						|
export SUNHAT_PATH="/home/$USER/.local/share/sunhat"
 | 
						|
export BUN_INSTALL="$HOME/.bun"
 | 
						|
 | 
						|
# Set complete path
 | 
						|
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
 | 
						|
 |