--- #This is an example sqishrc. to be copied and modified as ~/.sqishrc # #None of these configurations are mandatory. # #Prompt: Defines the promptline. Defaults to oldschool "$". #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) #RGB ! #RGB is defined as $RGB|red|green|blue_ #For example $RGB|108|84|30_ gives you an ugly shade of brown # #Styles: #BOLD : start of a bold block #ITA : start of an italic block #STYLERESET : reset all styles. prompt: "$COLORLBLACK_ !$HISTNUMBER_$COLORCYAN_[$USER_@$HOSTNAME_]$RGB|125|0|125_$DIR_> $COLORRESET_" #Classic aliases, can be used in conjunction with hotkeys aliases: gcl: git clone gpl: git pull #Hotkeys : When pressing Alt + the letter (a, b... up to y), enters the text inside the command #Alt + Z Cancels last hotkey hotkeys: a: "| less" b: "exit" #Init : A command to run on startup. Can be used for many things... init: "echo ---Initialization over---" #Env : to set environment variables at launch env: CAT: "meow" PATH: /home/cat/bin:$PATH