Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
eduardb committed Nov 18, 2022
1 parent aab1715 commit d3828bf
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 17 deletions.
2 changes: 0 additions & 2 deletions brew/Brewfile
Original file line number Diff line number Diff line change
Expand Up @@ -126,9 +126,7 @@ mas "Balance Lock", id: 1019371109
mas "Disk Speed Test", id: 425264550
mas "EasyRes", id: 688211836
mas "Flycut", id: 442160987
mas "GarageBand", id: 682658836
mas "Hand Mirror", id: 1502839586
mas "iMovie", id: 408981434
mas "Keynote", id: 409183694
mas "Numbers", id: 409203825
mas "Pages", id: 409201541
Expand Down
16 changes: 8 additions & 8 deletions install.conf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@
~/.zshrc: zsh/zshrc
~/.gitconfig: git/gitconfig
~/.gradle/gradle.properties: gradle/gradle.properties
/usr/local/bin/readydocker.sh: scripts/readydocker.sh
/usr/local/bin/docker_cleanup.sh: scripts/docker_cleanup.sh
/usr/local/bin/giffify.py: scripts/giffify.py

- shell:
-
Expand All @@ -27,14 +24,17 @@
stderr: true
description: Installing Homebrew

- link:
~/Library/Application Support/iTerm2/DynamicProfiles/Profiles.json: iterm2/Profiles.json
/usr/local/bin/subl: /Applications/Sublime Text.app/Contents/SharedSupport/bin/subl

- brewfile:
file: brew/Brewfile
no-upgrade: true

- link:
/opt/homebrew/bin/readydocker.sh: scripts/readydocker.sh
/opt/homebrew/bin/docker_cleanup.sh: scripts/docker_cleanup.sh
/opt/homebrew/bin/giffify.py: scripts/giffify.py
~/Library/Application Support/iTerm2/DynamicProfiles/Profiles.json: iterm2/Profiles.json
/opt/homebrew/bin/subl: /Applications/Sublime Text.app/Contents/SharedSupport/bin/subl

- shell:
- [sh fonts/powerline.sh, "Installing Powerline fonts"]
- [sh -c "rm -f ~/.zcompdump; compinit; chmod go-w '/usr/local/share'" , "Rebuilding zcompdump"]
- [sh -c "rm! -f ~/.zcompdump; compinit; chmod go-w '/usr/local/share'" , "Rebuilding zcompdump"]
17 changes: 10 additions & 7 deletions zsh/zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ COMPLETION_WAITING_DOTS="true"

### nvm
export NVM_DIR=~/.nvm
export NVM_LAZY=1
zstyle ':omz:plugins:nvm' lazy true
### end nvm

plugins=(adb ansible autojump brew command-not-found cp docker docker-compose extract genpass git git-extras git-flow gpg-agent gradle lol macos mvn nvm ripgrep sudo timer yarn)
Expand Down Expand Up @@ -125,35 +125,38 @@ function screenshot-ocr() {
}

# autojump
[ -f /usr/local/etc/profile.d/autojump.sh ] && . /usr/local/etc/profile.d/autojump.sh
[ -f /opt/homebrew/etc/profile.d/autojump.sh ] && . /opt/homebrew/etc/profile.d/autojump.sh
# end autojump

# zsh-autosuggestions
source /usr/local/share/zsh-autosuggestions/zsh-autosuggestions.zsh
source /opt/homebrew/share/zsh-autosuggestions/zsh-autosuggestions.zsh
# end zsh-autosuggestions

# fzf
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
# end fzf

# git-extras
source /usr/local/opt/git-extras/share/git-extras/git-extras-completion.zsh
source /opt/homebrew/opt/git-extras/share/git-extras/git-extras-completion.zsh
# end git-extras

# zsh-syntax-highlighting
source /usr/local/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
source /opt/homebrew/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
#end zsh-syntax-highlighting

# 1Password CLI
eval "$(op completion zsh)"; compdef _op op
# end 1Password CLI

### GCloud
source "/usr/local/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/path.zsh.inc"
source "/usr/local/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/completion.zsh.inc"
source "/opt/homebrew/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/path.zsh.inc"
source "/opt/homebrew/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/completion.zsh.inc"
### end GCloud

test -e "${HOME}/.iterm2_shell_integration.zsh" && source "${HOME}/.iterm2_shell_integration.zsh"

export GPG_TTY=$(tty)


# Wave config auto-added by bin/setup
source /Users/eduard/.waverc

0 comments on commit d3828bf

Please sign in to comment.