blob: 0604e756345d13f55dc97545521f5e31f99aac99 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#! /usr/bin/env zsh
dot="$(cd "$(dirname "$0")"; pwd)"
args=$@
source "$dot/sonar-base.sh"
if is_repo; then
autoload colors && colors
prepare_zsh_colors
render_prompt
fi
|