-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdot_bashrc
More file actions
executable file
·43 lines (28 loc) · 979 Bytes
/
dot_bashrc
File metadata and controls
executable file
·43 lines (28 loc) · 979 Bytes
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
#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
# Initialize zsh completions (added by deno install script)
autoload -Uz compinit
compinit
source_if_exists() {
if test -r "$1"; then
source "$1"
fi
}
source_if_exists "$HOME/.sharedrc"
# bun completions
[ -s "$HOME/.bun/_bun" ] && source "$HOME/.bun/_bun"
. "$HOME/.deno/env"
#THIS MUST BE AT THE END OF THE FILE FOR SDKMAN TO WORK!!!
export SDKMAN_DIR="/home/lea/.sdkman"
[[ -s "/home/lea/.sdkman/bin/sdkman-init.sh" ]] && source "/home/lea/.sdkman/bin/sdkman-init.sh"
# Added by Toolbox App
export PATH="$PATH:/home/lea/.local/share/JetBrains/Toolbox/scripts"
. $HOME/.sharedrc
. "$HOME/.cargo/env"
source /home/lea/.local/share/bash-completion/completions/deno.bash
#THIS MUST BE AT THE END OF THE FILE FOR SDKMAN TO WORK!!!
export SDKMAN_DIR="/home/lea/.sdkman"
[[ -s "/home/lea/.sdkman/bin/sdkman-init.sh" ]] && source "/home/lea/.sdkman/bin/sdkman-init.sh"