14 lines
330 B
Bash
14 lines
330 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Preferred editor for local and remote sessions.
|
|
if command -v helix >/dev/null 2>&1; then
|
|
export EDITOR="helix"
|
|
elif command -v nvim >/dev/null 2>&1; then
|
|
export EDITOR="nvim"
|
|
else
|
|
export EDITOR="vim"
|
|
fi
|
|
|
|
export OS="$(uname -s)"
|
|
export BASH_POLYJUICE_DEFAULT_PYTHON_VENV="$HOME/.default_pyvenv/.venv"
|