-
Notifications
You must be signed in to change notification settings - Fork 5
/
base.conf.sh
35 lines (29 loc) · 1.24 KB
/
base.conf.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/bin/bash
#
# Default configuration file
#
# Specifies defaults for values to be set by the user's local config file,
# and is loaded before that file. As these values can be overridden by
# the local config file, avoid setting environment variables and the
# like here, instead define values which environment.sh will then use
# after the user's config file has been loaded.
#
HOST_COLOR=NONE
# sed replacements of PWD, used by prompt::short_pwd to abbreviate commonly-used paths
HIDE_PATHS=(${HOME:+"s|^${HOME}|~|"}) # only shorten HOME if set
# sed replacements of HOSTNAME, used by prompt::short_hostname to abbreviate commonly-used hosts.
HIDE_HOSTS=()
# Callback functions used to construct the window title
TITLE_INFO=(prompt::short_hostname)
# Callback functions used to construct the prompt
ENV_INFO=()
# Callback functions invoked when a command has finished
COMMAND_FINISHED_CALLBACKS=()
# Callback variables
DISPLAY_COMMAND_FINISHED_DIALOG=30
# Enable functionality that requires the DEBUG trap; ignored if bash-preexec is detected.
# Note the debug trap is not updated when running pgem_reload, therefore it is neccessary to launch
# a new shell if changing this value.
OWN_DEBUG_TRAP=true
# Command execution times
DISPLAY_COMMAND_TIME_THRESHOLD=5