22 lines
538 B
Text
22 lines
538 B
Text
# Development Environment Variables
|
|
# Node.js and package managers
|
|
export COREPACK_ENABLE_DOWNLOAD_PROMPT=0
|
|
export COREPACK_ENABLE_NETWORK_RESOLUTION=1
|
|
export COREPACK_ENABLE_STRICT_VERIFICATION=0
|
|
|
|
# FZF configuration
|
|
export FZF_DEFAULT_OPTS='--height 40% --layout=reverse --border'
|
|
export FZF_DEFAULT_COMMAND='fd --type f'
|
|
|
|
# Zoxide configuration
|
|
export _ZO_ECHO=1
|
|
|
|
# Manual pages
|
|
export MANPAGER="nvim +Man!"
|
|
|
|
# Git configuration
|
|
export GIT_EDITOR=nvim
|
|
|
|
# Docker configuration
|
|
export DOCKER_BUILDKIT=1
|
|
export COMPOSE_DOCKER_CLI_BUILD=1
|