️ perf: improve funcs

This commit is contained in:
eshanized
2025-01-06 23:14:41 +05:30
parent 0f53fc0b85
commit 1c5739f4e9

View File

@@ -1,5 +1,7 @@
# Set terminal type to support 256 colors
export TERM="xterm-256color"
# Add custom binaries to the PATH
export PATH="${HOME}/.local/bin/bear:${PATH}"
# Add custom binaries to the PATH if the directory exists
if [ -d "${HOME}/.local/bin/bear" ]; then
export PATH="${HOME}/.local/bin/bear:${PATH}"
fi