You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			35 lines
		
	
	
		
			909 B
		
	
	
	
		
			Bash
		
	
			
		
		
	
	
			35 lines
		
	
	
		
			909 B
		
	
	
	
		
			Bash
		
	
# chezmoi:template:left-delimiter=#{{
 | 
						|
#{{- /* vim: set filetype=sh: */ -}}
 | 
						|
#shellcheck disable=SC2034
 | 
						|
BROWSER=firefox
 | 
						|
HISTCONTROL=ignoredups:erasedups:ignorespace
 | 
						|
HISTFILESIZE=
 | 
						|
HISTSIZE=
 | 
						|
MAN_DIR=${XDG_DATA_HOME}/man/man1
 | 
						|
PATH=${XDG_BIN_HOME}:${PATH}
 | 
						|
 | 
						|
#{{- if lookPath "nvim" }}
 | 
						|
EDITOR=nvim
 | 
						|
#{{- else }}
 | 
						|
EDITOR=vim
 | 
						|
#{{- end }}
 | 
						|
 | 
						|
#{{ if lookPath "bat" -}}
 | 
						|
BAT_PAGER="less --raw-control-chars --quit-if-one-screen --no-init"
 | 
						|
BAT_STYLE=plain
 | 
						|
BAT_THEME=zenburn
 | 
						|
MANPAGER="sh -c 'col -bx | bat --language man --plain'"
 | 
						|
#{{ end -}}
 | 
						|
 | 
						|
#{{ if eq .chezmoi.os "darwin" -}}
 | 
						|
CLICOLOR=1
 | 
						|
#{{ end -}}
 | 
						|
 | 
						|
#{{ if and (lookPath "node") (stat (joinPath .chezmoi.homeDir ".config" "npm" "npmrc")) -}}
 | 
						|
NPM_CONFIG_USERCONFIG="#{{ if ne .role "work" }}${XDG_CONFIG_HOME}/npm/npmrc#{{ else }}${XDG_CONFIG_HOME}/npm/config#{{ end }}"
 | 
						|
#{{ end -}}
 | 
						|
 | 
						|
#{{ if lookPath "rg" -}}
 | 
						|
RIPGREP_CONFIG_PATH="${XDG_CONFIG_HOME}/ripgrep/config"
 | 
						|
#{{ end -}}
 |