Skip to content

Commit

Permalink
vcpkg, ibmcloud and remove my home dir
Browse files Browse the repository at this point in the history
  • Loading branch information
Molter73 committed Sep 5, 2024
1 parent 0103e96 commit 99b8497
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion zsh/zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,9 @@ fi
[ -f "${HOME}/.fzf.zsh" ] && source "${HOME}/.fzf.zsh"
[ -f /usr/share/fzf/shell/key-bindings.zsh ] && source /usr/share/fzf/shell/key-bindings.zsh

# IBM Cloud completion
[ -f /usr/local/ibmcloud/autocomplete/zsh_autocomplete ] && source /usr/local/ibmcloud/autocomplete/zsh_autocomplete

PLUGINS_DIR="${ZSH}/plugins"
THEMES_DIR="${ZSH}/themes"

Expand All @@ -116,8 +119,10 @@ compinit

eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"

[[ ! -r /home/mmoltras/.opam/opam-init/init.zsh ]] || source /home/mmoltras/.opam/opam-init/init.zsh > /dev/null 2> /dev/null
[[ ! -r "${HOME}/.opam/opam-init/init.zsh" ]] || source "${HOME}/.opam/opam-init/init.zsh" > /dev/null 2> /dev/null

# Load vcpkg
[[ -f "${HOME}/.local/bin/vcpkg-init" ]] && source "${HOME}/.local/bin/vcpkg-init"

# Load Angular CLI autocompletion.
source <(ng completion script)

0 comments on commit 99b8497

Please sign in to comment.