25 lines
755 B
YAML
25 lines
755 B
YAML
---
|
|
#This is an example sqishrc. to be copied and modified as ~/.sqish.yaml (not .yml,
|
|
#I can't be bothered to deal with 2 different extensions).
|
|
#
|
|
#Prompt: Defines the promptline. Values are defined in all-caps, between $ and _.
|
|
#Possible values:
|
|
#HISTNUMBER: Current history number. Useful for !callback
|
|
#USER : Username.
|
|
#HOSTNAME : Hostname of the machine.
|
|
#DIR : Name of the current directory.
|
|
#
|
|
#Colors : All colors come from Termion.
|
|
#Possible values:
|
|
#RESET : Resets the color. Don't forget to add one in the end of your prompt !
|
|
#GREEN
|
|
#BLUE
|
|
#RED
|
|
#BLACK
|
|
#WHITE
|
|
#CYAN
|
|
#LBLACK (light black, a dark gray in fact)
|
|
#Will definitely add RGB support, stay tuned.
|
|
prompt: "$COLORLBLACK_ !$HISTNUMBER_$COLORCYAN_[$USER_@$HOSTNAME_] $DIR_> $COLORRESET_"
|
|
|