-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- and generally comment out useless varbls
- Loading branch information
1 parent
9208b9c
commit 2f7da32
Showing
2 changed files
with
22 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
#!/usr/bin/env bash | ||
# shellcheck shell=bash | ||
# shellcheck disable=SC2034 | ||
|
||
# If not running interactively, don't do anything | ||
case $- in | ||
|
@@ -7,27 +8,27 @@ case $- in | |
esac | ||
|
||
# Path to the bash it configuration | ||
export BASH_IT="{{BASH_IT}}" | ||
BASH_IT="{{BASH_IT}}" | ||
|
||
# Lock and Load a custom theme file. | ||
# Leave empty to disable theming. | ||
# location /.bash_it/themes/ | ||
export BASH_IT_THEME='bobby' | ||
# location ~/.bash_it/themes/ | ||
BASH_IT_THEME='bobby' | ||
|
||
# Some themes can show whether `sudo` has a current token or not. | ||
# Set `$THEME_CHECK_SUDO` to `true` to check every prompt: | ||
#THEME_CHECK_SUDO='true' | ||
|
||
# (Advanced): Change this to the name of your remote repo if you | ||
# cloned bash-it with a remote other than origin such as `bash-it`. | ||
# export BASH_IT_REMOTE='bash-it' | ||
#BASH_IT_REMOTE='bash-it' | ||
|
||
# (Advanced): Change this to the name of the main development branch if | ||
# you renamed it or if it was changed for some reason | ||
# export BASH_IT_DEVELOPMENT_BRANCH='master' | ||
#BASH_IT_DEVELOPMENT_BRANCH='master' | ||
|
||
# Your place for hosting Git repos. I use this for private repos. | ||
export GIT_HOSTING='[email protected]' | ||
#GIT_HOSTING='[email protected]' | ||
|
||
# Don't check mail when opening terminal. | ||
unset MAILCHECK | ||
|
@@ -36,49 +37,50 @@ unset MAILCHECK | |
export IRC_CLIENT='irssi' | ||
|
||
# Set this to the command you use for todo.txt-cli | ||
export TODO="t" | ||
TODO="t" | ||
|
||
# Set this to the location of your work or project folders | ||
#BASH_IT_PROJECT_PATHS="${HOME}/Projects:/Volumes/work/src" | ||
|
||
# Set this to false to turn off version control status checking within the prompt for all themes | ||
export SCM_CHECK=true | ||
#SCM_CHECK=true | ||
|
||
# Set to actual location of gitstatus directory if installed | ||
#export SCM_GIT_GITSTATUS_DIR="$HOME/gitstatus" | ||
#SCM_GIT_GITSTATUS_DIR="$HOME/gitstatus" | ||
# per default gitstatus uses 2 times as many threads as CPU cores, you can change this here if you must | ||
#export GITSTATUS_NUM_THREADS=8 | ||
|
||
# Set Xterm/screen/Tmux title with only a short hostname. | ||
# Uncomment this (or set SHORT_HOSTNAME to something else), | ||
# Will otherwise fall back on $HOSTNAME. | ||
#export SHORT_HOSTNAME=$(hostname -s) | ||
#SHORT_HOSTNAME=$(hostname -s) | ||
|
||
# Set Xterm/screen/Tmux title with only a short username. | ||
# Uncomment this (or set SHORT_USER to something else), | ||
# Will otherwise fall back on $USER. | ||
#export SHORT_USER=${USER:0:8} | ||
#SHORT_USER=${USER:0:8} | ||
|
||
# If your theme use command duration, uncomment this to | ||
# enable display of last command duration. | ||
#export BASH_IT_COMMAND_DURATION=true | ||
#BASH_IT_COMMAND_DURATION=true | ||
# You can choose the minimum time in seconds before | ||
# command duration is displayed. | ||
#export COMMAND_DURATION_MIN_SECONDS=1 | ||
#COMMAND_DURATION_MIN_SECONDS=1 | ||
|
||
# Set Xterm/screen/Tmux title with shortened command and directory. | ||
# Uncomment this to set. | ||
#export SHORT_TERM_LINE=true | ||
#SHORT_TERM_LINE=true | ||
|
||
# Set vcprompt executable path for scm advance info in prompt (demula theme) | ||
# https://github.com/djl/vcprompt | ||
#export VCPROMPT_EXECUTABLE=~/.vcprompt/bin/vcprompt | ||
#VCPROMPT_EXECUTABLE=~/.vcprompt/bin/vcprompt | ||
|
||
# (Advanced): Uncomment this to make Bash-it reload itself automatically | ||
# after enabling or disabling aliases, plugins, and completions. | ||
# export BASH_IT_AUTOMATIC_RELOAD_AFTER_CONFIG_CHANGE=1 | ||
# BASH_IT_AUTOMATIC_RELOAD_AFTER_CONFIG_CHANGE=1 | ||
|
||
# Uncomment this to make Bash-it create alias reload. | ||
# export BASH_IT_RELOAD_LEGACY=1 | ||
# BASH_IT_RELOAD_LEGACY=1 | ||
|
||
# Load Bash It | ||
source "$BASH_IT"/bash_it.sh | ||
source "${BASH_IT?}/bash_it.sh" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters