-
Notifications
You must be signed in to change notification settings - Fork 2
/
bash_profile
34 lines (27 loc) · 1.14 KB
/
bash_profile
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
# Q pre block. Keep at the top of this file.
[[ -f "${HOME}/Library/Application Support/amazon-q/shell/bash_profile.pre.bash" ]] && builtin source "${HOME}/Library/Application Support/amazon-q/shell/bash_profile.pre.bash"
if [ -f ~/.bashrc ]; then . ~/.bashrc; fi
# Setting PATH for Python 3.6
# The original version is saved in .bash_profile.pysave
PATH="/Library/Frameworks/Python.framework/Versions/3.6/bin:${PATH}"
export PATH
### Check the window size after each command ($LINES, $COLUMNS)
shopt -s checkwinsize
shopt -s cdspell
if (( BASHVERSINFO[0] >= 4 )); then
shopt -s direxpand
shopt -s dirspell
fi
# if this is an interactive terminal, set some completion config
if [ -t 1 ]
then
bind 'TAB:menu-complete'
# some other completion-related stuff lives in .inputrc
fi
PATH="~/.rbenv/shims:${PATH}"
export PATH
eval "$(rbenv init -)"
eval "$(/opt/homebrew/bin/brew shellenv)"
# vim:set ft=sh et sw=2 foldmethod=marker:
# Q post block. Keep at the bottom of this file.
[[ -f "${HOME}/Library/Application Support/amazon-q/shell/bash_profile.post.bash" ]] && builtin source "${HOME}/Library/Application Support/amazon-q/shell/bash_profile.post.bash"