mirror of
https://github.com/jimeh/dotfiles.git
synced 2026-02-19 04:46:41 +00:00
9 lines
135 B
Bash
9 lines
135 B
Bash
#
|
|
# Linux specific setup
|
|
#
|
|
|
|
# Ensure 256 color support in Linux
|
|
if [[ "$(uname)" == "Linux" ]]; then
|
|
export TERM="xterm-256color"
|
|
fi
|