adding bashrc configs; added more dev related apps; setting image memory to 4GB

This commit is contained in:
2025-12-02 22:02:26 -06:00
parent 2fb9091362
commit 48deb314a5
9 changed files with 260 additions and 4 deletions

24
Docker/env/.bash_exports vendored Normal file
View File

@@ -0,0 +1,24 @@
# Python
export PYTHONDONTWRITEBYTECODE=1
# Launchpad Config Parts
export DEBFULLNAME="Maxim Stewart"
export DEBEMAIL="1itdominator@gmail.com"
shopt -s cdspell
shopt -s autocd shift_verbose
shopt -s dirspell
# Bash history settings
export HISTSIZE=3000
export HISTCONTROL=$HISTCONTROL:ignoredups
# Default Editor
export EDITOR=nano
# Default FZF
# Note: bat is cat but with colors
export FZF_DEFAULT_OPTS="--layout=reverse --height=100% --preview='bat -p --color=always {}'"