mirror of
https://github.com/chenasraf/dotfiles.git
synced 2026-05-18 01:29:06 +00:00
feat: install home from nvim
This commit is contained in:
@@ -1,7 +1,13 @@
|
||||
#!/usr/bin/env zsh
|
||||
|
||||
export USE_COLORS=$(tput colors 2>/dev/null)
|
||||
|
||||
# colors
|
||||
function color() {
|
||||
if [[ -z "$USE_COLORS" || "$USE_COLORS" -lt 8 ]]; then
|
||||
echo "$@"
|
||||
return
|
||||
fi
|
||||
local c="$1"
|
||||
shift
|
||||
echo -e "\033[0;${c}m$@\033[0m"
|
||||
|
||||
Reference in New Issue
Block a user