mirror of
https://github.com/nikdoof/dotfiles.git
synced 2025-12-14 02:02:29 +00:00
[shell-common] Update TZ list
This commit is contained in:
@@ -9,7 +9,7 @@ export LANG=en_GB.UTF-8
|
|||||||
# Make a sensible editor choice
|
# Make a sensible editor choice
|
||||||
editor_preferences=(nano pico vim vi)
|
editor_preferences=(nano pico vim vi)
|
||||||
for editor in "${editor_preferences[@]}"; do
|
for editor in "${editor_preferences[@]}"; do
|
||||||
if [ -x "$(which $editor)" ]; then
|
if [ -x "$(command -v $editor)" ]; then
|
||||||
export EDITOR=$editor
|
export EDITOR=$editor
|
||||||
export VISUAL=$editor
|
export VISUAL=$editor
|
||||||
break
|
break
|
||||||
@@ -33,8 +33,8 @@ if [ -f $HOME/.cargo/env ]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# https://github.com/oz/tz
|
# https://github.com/oz/tz
|
||||||
if [ -f $HOME/go/bin/tz ]; then
|
if [ -x "$(command -v tz)" ]; then
|
||||||
export TZ_LIST="America/New_York,America/Los_Angeles,Europe/Paris"
|
export TZ_LIST="America/New_York,WDW;America/Los_Angeles,DLR;Europe/Paris,DLP"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# macOS Specific envs
|
# macOS Specific envs
|
||||||
|
|||||||
Reference in New Issue
Block a user