File tree 4 files changed +23
-4
lines changed
exact_private_dot_bashrc.d
4 files changed +23
-4
lines changed Original file line number Diff line number Diff line change @@ -37,16 +37,22 @@ packages:
37
37
- direnv
38
38
- eza
39
39
- fzf
40
+ - ggshield
40
41
- gh
41
42
- git
43
+ - golang
44
+ - golangci-lint
42
45
- htop
43
46
- jq
44
47
- lazygit
45
48
- neofetch
46
49
- neovim
50
+ - pre-commit
47
51
- ripgrep
48
52
- rsync
49
53
- tree-sitter
54
+ - yamlfmt
55
+ - yamllint
50
56
- yq
51
57
- zellij
52
58
- zoxide
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
3
- # Added by Toolbox App
4
- export PATH=" ${HOME} .local/share/JetBrains/Toolbox/scripts:${PATH} "
5
-
6
3
if [ -f " ${HOME} /.bashrc" ]; then
7
4
# shellcheck disable=SC1091
8
5
source " ${HOME} /.bashrc"
9
6
fi
7
+
8
+ export PATH=" ${HOME} /.local/share/JetBrains/Toolbox/scripts:${PATH} "
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+
3
+ # Adjust how often this is run with HOMEBREW_AUTO_UPDATE_SECS or disable with
4
+ # HOMEBREW_NO_AUTO_UPDATE. Hide these hints with HOMEBREW_NO_ENV_HINTS (see `man brew`).
5
+
6
+ if command -v brew & > /dev/null; then
7
+ export HOMEBREW_AUTO_UPDATE_SECS=900
8
+ export HOMEBREW_NO_ENV_HINTS=1
9
+ fi
Original file line number Diff line number Diff line change @@ -21,10 +21,15 @@ verlt() {
21
21
! verlte " $2 " " $1 "
22
22
}
23
23
24
- join_by () { local IFS=" $1 " ; shift ; echo " $* " ; }
24
+ join_by () {
25
+ local IFS=" $1 "
26
+ shift
27
+ echo " $* "
28
+ }
25
29
26
30
osid () {
27
31
if [ -f /etc/os-release ]; then
32
+ # shellcheck disable=SC1091
28
33
source /etc/os-release
29
34
join_by ' -' " ${ID} " " ${VARIANT_ID} "
30
35
else
You can’t perform that action at this time.
0 commit comments