-
Notifications
You must be signed in to change notification settings - Fork 1
/
bashrc
46 lines (39 loc) · 1.71 KB
/
bashrc
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
36
37
38
39
40
41
42
43
44
45
46
# Copyright 2015 Rouslan Solomakhin
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
case $- in
*i*) ;;
*) return ;;
esac
source ~/.common.sh
HELPERS=""
HELPERS="$HELPERS $HOME/.fzf.bash"
HELPERS="$HELPERS $HOME/google-cloud-sdk/completion.bash.inc"
HELPERS="$HELPERS $HOME/google-cloud-sdk/path.bash.inc"
HELPERS="$HELPERS /etc/bash_completion"
HELPERS="$HELPERS /usr/local/git/current/share/git-core/git-completion.bash"
HELPERS="$HELPERS /usr/local/git/current/share/git-core/git-prompt.sh"
HELPERS="$HELPERS /opt/homebrew/etc/bash_completion.d/brew"
HELPERS="$HELPERS /opt/homebrew/etc/bash_completion.d/cargo"
HELPERS="$HELPERS /opt/homebrew/etc/bash_completion.d/git-completion.bash"
HELPERS="$HELPERS /opt/homebrew/etc/bash_completion.d/git-prompt.sh"
HELPERS="$HELPERS /opt/homebrew/etc/bash_completion.d/npm"
HELPERS="$HELPERS /opt/homebrew/etc/bash_completion.d/tmux"
for helper in $HELPERS; do [ -f $helper ] && source $helper >& /dev/null; done
# Default PS1 theme.
export PS1='[\[\e[32m\]\u\[\e[m\]@\[\e[34m\]\h\[\e[m\]:\w]\[\e[34m\]$(__git_ps1 \(%s\))\[\e[m\]\$ '
# Blinking bar cursor.
echo -e -n "\x1b[\x35 q"
# Silence the warning the default interactive shell is now zsh.
export BASH_SILENCE_DEPRECATION_WARNING=1
# vi:ft=sh