mirror of
				https://github.com/dcarrillo/prezto.git
				synced 2025-11-04 12:09:08 +00:00 
			
		
		
		
	Two additional sets of paths are now added to the default list of well
known paths: '$HOME/{bin,sbin}' and '/opt/{homebrew,local}/{bin,sbin}'.
- '$HOME/{bin,sbin}': Most users have custom scripts in '$HOME/bin'
anyway, we might as well honor those. '$HOME/sbin' is not really common,
but we can keep it for consistency.
- '/opt/{homebrew,local}/{bin,sbin}': With Homebrew changing default
installation location in macOS on Apple Silicon which will eventually
become ubiquitous, we have a good reason to add these paths by default.
While at it, we also honor MacPorts installation.
In all cases, we add them _iff_ the paths actually exist, not otherwise.
This has the side effect of a newly installed program not available
immediately in the '$path' in a mint fresh system (because of the fact
that '/opt/{homebrew,local}/{bin,sbin}' won't exist initially) until the
shell is reloaded. But that's a minor inconvenience to keep the '$path'
from getting unnecessarily bloated.
		
	
		
			
				
	
	
		
			74 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			74 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
#
 | 
						|
# Executes commands at login pre-zshrc.
 | 
						|
#
 | 
						|
# Authors:
 | 
						|
#   Sorin Ionescu <sorin.ionescu@gmail.com>
 | 
						|
#
 | 
						|
 | 
						|
#
 | 
						|
# Browser
 | 
						|
#
 | 
						|
 | 
						|
if [[ -z "$BROWSER" && "$OSTYPE" == darwin* ]]; then
 | 
						|
  export BROWSER='open'
 | 
						|
fi
 | 
						|
 | 
						|
#
 | 
						|
# Editors
 | 
						|
#
 | 
						|
 | 
						|
if [[ -z "$EDITOR" ]]; then
 | 
						|
  export EDITOR='nano'
 | 
						|
fi
 | 
						|
if [[ -z "$VISUAL" ]]; then
 | 
						|
  export VISUAL='nano'
 | 
						|
fi
 | 
						|
if [[ -z "$PAGER" ]]; then
 | 
						|
  export PAGER='less'
 | 
						|
fi
 | 
						|
 | 
						|
#
 | 
						|
# Language
 | 
						|
#
 | 
						|
 | 
						|
if [[ -z "$LANG" ]]; then
 | 
						|
  export LANG='en_US.UTF-8'
 | 
						|
fi
 | 
						|
 | 
						|
#
 | 
						|
# Paths
 | 
						|
#
 | 
						|
 | 
						|
# Ensure path arrays do not contain duplicates.
 | 
						|
typeset -gU cdpath fpath mailpath path
 | 
						|
 | 
						|
# Set the list of directories that cd searches.
 | 
						|
# cdpath=(
 | 
						|
#   $cdpath
 | 
						|
# )
 | 
						|
 | 
						|
# Set the list of directories that Zsh searches for programs.
 | 
						|
path=(
 | 
						|
  $HOME/{,s}bin(N)
 | 
						|
  /opt/{homebrew,local}/{,s}bin(N)
 | 
						|
  /usr/local/{,s}bin(N)
 | 
						|
  $path
 | 
						|
)
 | 
						|
 | 
						|
#
 | 
						|
# Less
 | 
						|
#
 | 
						|
 | 
						|
# Set the default Less options.
 | 
						|
# Mouse-wheel scrolling has been disabled by -X (disable screen clearing).
 | 
						|
# Remove -X to enable it.
 | 
						|
if [[ -z "$LESS" ]]; then
 | 
						|
  export LESS='-g -i -M -R -S -w -X -z-4'
 | 
						|
fi
 | 
						|
 | 
						|
# Set the Less input preprocessor.
 | 
						|
# Try both `lesspipe` and `lesspipe.sh` as either might exist on a system.
 | 
						|
if [[ -z "$LESSOPEN" ]] && (( $#commands[(i)lesspipe(|.sh)] )); then
 | 
						|
  export LESSOPEN="| /usr/bin/env $commands[(i)lesspipe(|.sh)] %s 2>&-"
 | 
						|
fi
 |