Update
| Author | Mitja Felicijan <mitja.felicijan@gmail.com> | 2025-08-01 09:26:08 +0200 |
| Committer | Mitja Felicijan <mitja.felicijan@gmail.com> | 2025-08-01 09:26:08 +0200 |
| Commit | bf046f0bac52c5c801423f0cedb755a482637e73 (patch) |
|
-rwxr-xr-x |
.shenanigans.sh | 5 |
1 files changed, 2 insertions, 3 deletions
| diff --git a/.shenanigans.sh b/.shenanigans.sh | |||
| ... | |||
| 12 | # Only run if the script is being sourced (bashrc). |
12 | # Only run if the script is being sourced (bashrc). |
| 13 | if [[ "${BASH_SOURCE[0]}" != "${0}" ]]; then |
13 | if [[ "${BASH_SOURCE[0]}" != "${0}" ]]; then |
| 14 | # Magical environment variables. |
14 | # Magical environment variables. |
| 15 | export LANG=en_US.UTF-8 |
||
| 16 | export LC_ALL=en_US.UTF-8 |
||
| 15 | export COLORTERM=truecolor |
17 | export COLORTERM=truecolor |
| 16 | export TERM=xterm-256color |
18 | export TERM=xterm-256color |
| 17 | export VISUAL=vim |
19 | export VISUAL=vim |
| 18 | export EDITOR=vim |
20 | export EDITOR=vim |
| 19 | |||
| 20 | export LANG=en_US.UTF-8 |
||
| 21 | export LC_ALL=en_US.UTF-8 |
||
| 22 | 21 | ||
| 23 | # Customized Bash prompt. |
22 | # Customized Bash prompt. |
| 24 | SYMBOL='\[\e[38;5;214m\]\$\[\e[0m\]' |
23 | SYMBOL='\[\e[38;5;214m\]\$\[\e[0m\]' |
| ... | |||