Skip to content

Commit 71bdb80

Browse files
committed
πŸ—ƒοΈ latest updates
1 parent 3021a09 commit 71bdb80

File tree

7 files changed

+22
-11
lines changed

7 files changed

+22
-11
lines changed

β€Žmacos/Brewfileβ€Ž

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
######################### TAPS ###########################
33
##########################################################
44

5+
tap "oven-sh/bun"
6+
57
##########################################################
68
####################### UTILITIES ########################
79
##########################################################
@@ -14,6 +16,7 @@ brew "checkov"
1416
brew "coreutils"
1517
brew "curl"
1618
brew "direnv"
19+
brew "dua-cli"
1720
brew "ffmpeg"
1821
brew "fzf"
1922
brew "gh"
@@ -22,7 +25,7 @@ brew "git-lfs"
2225
brew "glances"
2326
brew "gnupg"
2427
brew "go"
25-
brew "go-task/tap/go-task"
28+
brew "go-task"
2629
brew "grep"
2730
brew "hashicorp/tap/terraform"
2831
brew "helm"
@@ -43,6 +46,7 @@ brew "node"
4346
brew "nvm"
4447
brew "openjdk"
4548
brew "opentofu"
49+
brew "oven-sh/bun/bun"
4650
brew "ripgrep"
4751
brew "rich-cli"
4852
brew "sops"

β€Žshell/.bashrcβ€Ž

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,9 @@ if command -v thefuck &>/dev/null; then
7979
eval "$(thefuck --alias)"
8080
eval "$(thefuck --alias dang)"
8181
fi
82-
# direnv
83-
if command -v direnv &>/dev/null; then
84-
eval "$(direnv hook bash)"
82+
# mise
83+
if command -v mise &>/dev/null; then
84+
eval "$(mise activate bash)"
8585
fi
8686

8787
#########################################################################################################

β€Žshell/.shell_startupβ€Ž

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,11 @@ if [[ $(uname) == "Darwin" ]]; then
3535
export HOMEBREW_CASK_OPTS="--appdir=${HOME}/Applications"
3636
fi
3737

38+
# bun
39+
if [[ ${PATH} != *"${HOME}/.bun/bin"* && -d ${HOME}/.bun/bin ]]; then
40+
export PATH="${HOME}/.bun/bin:${PATH}"
41+
fi
42+
3843
# ~/.local/bin
3944
if [[ ${PATH} != *"${HOME}/.local/bin"* && -d ${HOME}/.local/bin ]]; then
4045
export PATH="${HOME}/.local/bin:${PATH}"

β€Žshell/.zshrcβ€Ž

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ plugins=(
2525
)
2626

2727
if ! command -v omz &> /dev/null; then
28-
export DISABLE_AUTO_UPDATE="1"
28+
zstyle ':omz:update' mode disabled
2929
source "${ZSH}/oh-my-zsh.sh"
3030
fi
3131

@@ -78,9 +78,9 @@ if command -v thefuck &>/dev/null; then
7878
eval "$(thefuck --alias)"
7979
eval "$(thefuck --alias dang)"
8080
fi
81-
# direnv
82-
if command -v direnv &>/dev/null; then
83-
eval "$(direnv hook zsh)"
81+
# mise
82+
if command -v mise &> /dev/null; then
83+
eval "$(mise activate zsh)"
8484
fi
8585

8686
# disable autocd

β€Žtools/awsume/config.yamlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ colors: true
22
fuzzy-match: true
33
role-duration: 43200
44
console:
5-
browser_command: '"/Applications/Google Chrome.app/Contents/MacOS/Google Chrome" -incognito "{url}"'
5+
browser_command: '"~/Applications/Vivaldi.app/Contents/MacOS/Vivaldi" --incognito "{url}"'

β€Žtools/starship/starship.tomlβ€Ž

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,13 +110,15 @@ style = "fg:color_fg0 bg:color_yellow"
110110
format = "[ ${path} ](${style})"
111111
truncation_length = 3
112112
truncation_symbol = "…/"
113+
truncate_to_repo = false
113114

114115
[directory.substitutions]
115116
"Documents" = "σ°ˆ™ "
116117
"Downloads" = "ο€™ "
117118
"Music" = "󰝚 "
118119
"Pictures" = "ο€Ύ "
119120
"Developer" = "󰲋 "
121+
"~/git" = ""
120122

121123
[git_branch]
122124
symbol = ""

β€Žtools/uv/UvToolFileβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
aws-sso-util
22
awsume[fuzzy,console]
3-
browsr[remote]
3+
batrachian-toad
4+
browsr[all]
45
camply[all]
56
cookiecutter
67
dunk
78
dvc
8-
elia-chat
99
hatch --with pip
1010
hatch-pip-compile
1111
httpie

0 commit comments

Comments
Β (0)