-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.bash_vendor
226 lines (195 loc) · 14.6 KB
/
.bash_vendor
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
#!/bin/bash
# shellcheck disable=SC1090,SC2086,SC1091
# ╔═════════════════════════════════════════════════════════════════╗
# ║ BASH_VENDORS ║
# ╚═════════════════════════════════════════════════════════════════╝
# ╔═════════════════════════════════════════════════════════════════╗
# ║ Java JDK ║
# ╚═════════════════════════════════════════════════════════════════╝
# [Pkg] default-jdk default-jre
# [Locate] $ readlink -f `which javac` | sed "s:/bin/javac::"
# [Notes] Java is always a symbolic link using update-alternatives
if [ -L /usr/bin/java ]; then
export JAVA_HOME=/usr/lib/jvm/java-21-openjdk-amd64/bin/java
export PATH=$PATH:$JAVA_HOME/bin
fi
# ╔═════════════════════════════════════════════════════════════════╗
# ║ Dotnet JDK ║
# ╚═════════════════════════════════════════════════════════════════╝
# [Pkg] dotnet-install.sh
# [Locate] $ readlink -f `which javac` | sed "s:/bin/javac::"
# [Notes] wget https://dot.net/v1/dotnet-install.sh -O dotnet-install.sh
# chmod +x ./dotnet-install.sh && ./dotnet-install.sh
# (See ~/.dotnet folder)
if [ -d $HOME/.dotnet ]; then
export DOTNET_ROOT=$HOME/.dotnet
export PATH=$PATH:$DOTNET_ROOT/tools
alias dotnet=$DOTNET_ROOT/dotnet
fi
# ╔═════════════════════════════════════════════════════════════════╗
# ║ Rust Language ║
# ╚═════════════════════════════════════════════════════════════════╝
# [Pkg] Rust
# [Install] $ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
[[ -d $XDG_DATA_HOME/cargo/bin ]] && export PATH=$PATH:$XDG_DATA_HOME/cargo/bin
# ╔═════════════════════════════════════════════════════════════════╗
# ║ Bun (Node) ║
# ╚═════════════════════════════════════════════════════════════════╝
# [Pkg] Bun (Node alternative)
# [Install] curl -fsSL https://deno.land/install.sh | sh
# ───────────────────────────────────────────────────────────────────
if command -v bun >/dev/null 2>&1; then
export BUN_INSTALL="$HOME/.bun"
export PATH="$BUN_INSTALL/bin:$PATH"
fi
# ╔═════════════════════════════════════════════════════════════════╗
# ║ Deno (Node) ║
# ╚═════════════════════════════════════════════════════════════════╝
# [Pkg] Deno (Node alternative)
# [Install] curl -fsSL https://deno.land/install.sh | sh
# ───────────────────────────────────────────────────────────────────
[[ -f "$HOME/.deno/env" ]] && . "$HOME/.deno/env"
# ╔═════════════════════════════════════════════════════════════════╗
# ║ asdf (Version Mgr) ║
# ╚═════════════════════════════════════════════════════════════════╝
# [Pkg] asdf (Node alternative)
# [Install] git clone https://github.com/asdf-vm/asdf.git ~/.asdf --branch v0.14.1
# ───────────────────────────────────────────────────────────────────
# Disalbe for now
#if [[ -f "$HOME/.asdf/asdf.sh" ]]; then
# . "$HOME/.asdf/asdf.sh"
# . "$HOME/.asdf/completions/asdf.bash"
#fi
# ╔═════════════════════════════════════════════════════════════════╗
# ║ Node / NPM / Yarn / PNPM ║
# ║ (!) Place ~/.yarn before ~/.npm so is takes precidence. ║
# ╚═════════════════════════════════════════════════════════════════╝
# [Pkg] Yarn (NPM alternative)
# [Install] $ npm i -g yarn
# ───────────────────────────────────────────────────────────────────
if [[ -d $HOME/.yarn/bin ]]; then
export PATH=$PATH:$HOME/.yarn/bin
alias yarn='yarn --use-yarnrc "$XDG_CONFIG_HOME/yarn/config"'
fi
# pnpm (Phantom NPM) (NPM Alternative)
# ───────────────────────────────────────────────────────────────────
# [Pkg] https:/pnpm.io
# [Install] curl -fsSL https://get.pnpm.io/install.sh | sh -
# [Use] $ pnpm -h
if [ -d $HOME/.local/share/pnpm ]; then
export PNPM_HOME=$XDG_DATA_HOME/pnpm
export PATH="$PNPM_HOME:$PATH"
alias pn=pnpm
fi
# ╔═════════════════════════════════════════════════════════════════╗
# ║ Laravel Sail ║
# ╚═════════════════════════════════════════════════════════════════╝
# [Pkg] https://laravel.com/docs/11.x/sail
# [Req] Docker
# [Install] curl -s "https://laravel.build/NameYourApp" | bash
# sail up && sail migrate
# [Use] $ sail
alias sail='sh $([ -f sail ] && echo sail || echo vendor/bin/sail)'
# ╔═════════════════════════════════════════════════════════════════╗
# ║ GoLang ║
# ╚═════════════════════════════════════════════════════════════════╝
# [Pkg] https://go.dev/
# [Install] Download @ https://go.dev/dl/
# [Use] $ go -h
if [ -d /usr/local/go ]; then
# Do GO development in $GOPATH
export GOPATH=$XDG_DATA_HOME/go
export PATH=$PATH:/usr/local/go/bin
export PATH=$PATH:$GOPATH/bin
fi
# ╔═════════════════════════════════════════════════════════════════╗
# ║ Python / PyEnv ║
# ╚═════════════════════════════════════════════════════════════════╝
# Stop generating bytecode files
export PYTHONDONTWRITEBYTECODE=1
export WORKON_HOME="$XDG_DATA_HOME/virtualenvs"
# Pipx is for installing python commands (not packages)
# ───────────────────────────────────────────────────────────────────
# [Pkg] pip install pipx
if [ -x $HOME/.local/bin/pipx ]; then
eval "$(register-python-argcomplete pipx)"
fi
# ╔═════════════════════════════════════════════════════════════════╗
# ║ Composer / PHP ║
# ╚═════════════════════════════════════════════════════════════════╝
[ -d $XDG_CONFIG_HOME/composer/vendor/bin ] && PATH=$PATH:$XDG_CONFIG_HOME/composer/vendor/bin
# ╔═════════════════════════════════════════════════════════════════╗
# ║ Bash Helpers ║
# ╚═════════════════════════════════════════════════════════════════╝
# ───────────────────────────────────────────────────────────────────
# GRC (Bash Color Highlights)
# ───────────────────────────────────────────────────────────────────
# [Pkg] apt install grc
# [Toggle] sudo sed -i 's/^GRC_ALIASES.*/GRC_ALIASES=true/' /etc/default/grc
export GRC_ALIASES=true
[[ -s "/etc/profile.d/grc.sh" ]] && source /etc/profile.d/grc.sh
# ───────────────────────────────────────────────────────────────────
# Better concat (cat) function with colors
# ───────────────────────────────────────────────────────────────────
# [Pkg] https://github.com/sharkdp/bat
# [Use] $ batcat -h
if type batcat >/dev/null 2>&1; then
# --plain for no line numbers
# --paging never (because I can't copy/paste so nicely)
alias bat='batcat --theme="Monokai Extended Origin" --plain --paging=never'
fi
# ───────────────────────────────────────────────────────────────────
# FZF Fuzzy Finder (Very Powerful Tool)
# ───────────────────────────────────────────────────────────────────
# [Pkg] https://github.com/junegunn/fzf
# git clone instead of apt for working version
# [Use] $ fzf
# $ cat anyfile | fzf
# <ALT> + C Fuzzy Directory Jump
# <CTRL> + R History Fuzzy Search
# Set Alias for fd before FZF
[ -x /usr/bin/fdfind ] && alias fd='fdfind'
[ -d "$HOME/.fzf/bin" ] && export PATH=$PATH:$HOME/.fzf/bin
if [ -x $HOME/.fzf/bin/fzf ]; then
export FZF_DEFAULT_OPTS="--height 40% --layout=reverse --info=inline --margin=0 --padding=0 --border=rounded --tabstop=4 --color=dark,info:bright-green,pointer:green,hl:bright-green"
# To use a File
#export FZF_DEFAULT_OPTS_FILE="$XDG_CONFIG_HOME/fzfrc"
export FZF_COMPLETION_TRIGGER=".."
export FZF_DEFAULT_COMMAND="fdfind . $HOME --type f --exclude .git,node_modules"
export FZF_ALT_C_COMMAND="fdfind -t d . $HOME"
export FZF_ALT_C_OPTS="
--color header:italic
--header 'Change Directory'"
export FZF_CTRL_R_OPTS="
--color header:italic
--header 'History'"
# Ctrl+G uses the CTRL_T_OPTS
# Bind CTRL+G to File Widget
bind -x '"\C-g": "fzf-file-widget"'
export FZF_CTRL_T_OPTS="
--walker-skip .git,node_modules,target
--preview 'bat -n --color=always {}'
--color header:italic
--header 'File Widget'"
_fzf_comprun() {
local command=$1
shift
case "$command" in
cd) fzf "$@" --preview 'tree -C {} | head -200' ;;
*) fzf "$@" ;;
esac
}
fi
# ───────────────────────────────────────────────────────────────────
# Tre-Command
# [Pkg] apt install tre--comand
# [Use] tre-command (Or, replaced with $ tree here)
# ───────────────────────────────────────────────────────────────────
command -v tre >/dev/null && alias tree='tre'
# ───────────────────────────────────────────────────────────────────
# DirEnv
# [Pkg] apt install direnv
# [Use] Create a .envrc file
# $ direnv allow
# ───────────────────────────────────────────────────────────────────
[ -x /usr/bin/direnv ] && eval "$(direnv hook bash)"