Created
November 8, 2021 10:16
-
-
Save exocode/79c9acfad9828b73d05d2abfa39f1724 to your computer and use it in GitHub Desktop.
brew list and .zsh_rc to investigate issue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc. | |
# Initialization code that may require console input (password prompts, [y/n] | |
# confirmations, etc.) must go above this block; everything else may go below. | |
# if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then | |
# source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" | |
# fi | |
#!/bin/sh | |
# [ -f ~/.fzf.zsh ] && source ~/.fzf.zsh | |
[ -f ~/.dotfiles/fubectl.source ] && source ~/.dotfiles/fubectl.source | |
# if you want to use this, change your non-ascii font to Droid Sans Mono for Awesome | |
POWERLEVEL9K_MODE='awesome-patched' | |
# export ZSH_THEME="powerlevel9k/powerlevel9k" | |
export ZSH_THEME="powerlevel10k/powerlevel10k" | |
POWERLEVEL9K_PROMPT_ADD_NEWLINE=true | |
POWERLEVEL9K_SHORTEN_DIR_LENGTH=2 | |
# https://github.com/bhilburn/powerlevel9k#customizing-prompt-segments | |
# https://github.com/bhilburn/powerlevel9k/wiki/Stylizing-Your-Prompt | |
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(user dir vcs) | |
POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(status rbenv rspec_stats) | |
# colorcode test | |
# for code ({000..255}) print -P -- "$code: %F{$code}This is how your text would look like%f" | |
POWERLEVEL9K_NVM_FOREGROUND='000' | |
POWERLEVEL9K_NVM_BACKGROUND='072' | |
POWERLEVEL9K_SHOW_CHANGESET=true | |
POWERLEVEL9K_DIR_HOME_FOREGROUND="black" | |
POWERLEVEL9K_DIR_HOME_BACKGROUND="green" | |
POWERLEVEL9K_DIR_HOME_SUBFOLDER_FOREGROUND="white" | |
POWERLEVEL9K_DIR_DEFAULT_FOREGROUND="white" | |
POWERLEVEL9K_DIR_DEFAULT_BACKGROUND="yellow" | |
POWERLEVEL9K_DIR_ETC_BACKGROUND="grey" | |
POWERLEVEL9K_DIR_ETC_FOREGROUND="black" | |
# Customize to your needs... | |
POWERLEVEL9K_CUSTOM_PYTHON="echo -n '\uf81f' Python" | |
POWERLEVEL9K_CUSTOM_PYTHON_FOREGROUND="black" | |
POWERLEVEL9K_CUSTOM_PYTHON_BACKGROUND="blue" | |
POWERLEVEL9K_OS_ICON_BACKGROUND="black" | |
POWERLEVEL9K_OS_ICON_FOREGROUND="orange" | |
POWERLEVEL9K_VCS_CLEAN_FOREGROUND='black' | |
POWERLEVEL9K_VCS_UNTRACKED_FOREGROUND='black' | |
POWERLEVEL9K_VCS_UNTRACKED_BACKGROUND='red' | |
POWERLEVEL9K_VCS_MODIFIED_FOREGROUND='black' | |
POWERLEVEL9K_VCS_MODIFIED_BACKGROUND='yellow' | |
# ssh | |
# export SSH_KEY_PATH="~/.ssh/dsa_id" | |
# Path to your dotfiles installation. | |
export DOTFILES=$HOME/.dotfiles | |
# Path to your oh-my-zsh configuration. | |
export ZSH=$DOTFILES/oh-my-zsh | |
# Uncomment the following line to use case-sensitive completion. | |
# CASE_SENSITIVE="true" | |
# Uncomment the following line to use hyphen-insensitive completion. Case | |
# sensitive completion must be off. _ and - will be interchangeable. | |
# HYPHEN_INSENSITIVE="true" | |
# Uncomment the following line to disable bi-weekly auto-update checks. | |
# DISABLE_AUTO_UPDATE="true" | |
# Uncomment the following line to change how often to auto-update (in days). | |
# export UPDATE_ZSH_DAYS=13 | |
# Uncomment the following line to disable colors in ls. | |
# DISABLE_LS_COLORS="true" | |
# Uncomment the following line to disable auto-setting terminal title. | |
# DISABLE_AUTO_TITLE="true" | |
# Uncomment the following line to enable command auto-correction. | |
# ENABLE_CORRECTION="true" | |
# Uncomment the following line to display red dots whilst waiting for completion. | |
# COMPLETION_WAITING_DOTS="true" | |
# Uncomment the following line if you want to disable marking untracked files | |
# under VCS as dirty. This makes repository status check for large repositories | |
# much, much faster. | |
# DISABLE_UNTRACKED_FILES_DIRTY="true" | |
# Uncomment the following line if you want to change the command execution time | |
# stamp shown in the history command output. | |
# The optional three formats: "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd" | |
HIST_STAMPS="dd/mm/yyyy" | |
HISTTIMEFORMAT="dd/mm/yyyy" | |
# Which plugins would you like to load? (plugins can be found in ~/.dotfiles/oh-my-zsh/plugins/*) | |
# deactivated plugins kubecontext rubocop | |
# Example format: plugins=(zsh-autosuggestions zsh-completions zsh-syntax-highlighting zsh-output-highlighting common-aliases rails git textmate ruby lighthouse docker docker-compose docker-machine) | |
BUNDLED_COMMANDS=(rubocop) | |
UNBUNDLED_COMMANDS=(berks foreman mailcatcher rails ruby spin rubocop) | |
plugins=(zsh-completions zsh-autosuggestions docker fzf bundler brew cask capistrano codeclimate coffee dotenv gem git github grunt helm heroku history iterm2 minikube node redis-cli redis-cli rails rake rake-fast ruby rbenv textmate macos pod zeus terraform) | |
# Activate Oh-My-Zsh | |
source $ZSH/oh-my-zsh.sh | |
# platformIO autocompletion | |
# | |
emulate sh -c '. ~/.profile' | |
# eval "$(_PLATFORMIO_COMPLETE=source platformio)" | |
# eval "$(_PIO_COMPLETE=source pio)" | |
#source ~/.profile | |
complete -o nospace -C /usr/local/bin/terraform terraform | |
# # tabtab source for yarn package | |
# # uninstall by removing these lines or running `tabtab uninstall yarn` | |
# [[ -f /Users/jan/.config/yarn/global/node_modules/tabtab/.completions/yarn.zsh ]] && . /Users/jan/.config/yarn/global/node_modules/tabtab/.completions/yarn.zsh | |
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh. | |
[[ -f ~/.p10k.zsh ]] && source ~/.p10k.zsh | |
[ -f "/Users/jan/.shopify-app-cli/shopify.sh" ] && source "/Users/jan/.shopify-app-cli/shopify.sh" | |
source /Users/Shared/rlm/rlmenvset.sh | |
# source /usr/local/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh | |
# load autocomplete | |
fpath=(/usr/local/share/zsh-completions $fpath) | |
fpath=(~/.dotfiles/completions $fpath) | |
autoload -U compinit && compinit | |
# autocompletion for kubectl | |
if [ $commands[kubectl] ]; then | |
source <(kubectl completion zsh) | |
fi | |
# kompose for kubernetes autocompletion | |
source <(kompose completion zsh) | |
source <(kubeone completion zsh) | |
source <(tilt completion zsh) | |
source <(civo completion zsh) | |
# Set Ruby version manager | |
if which rbenv >/dev/null; then eval "$(rbenv init -)"; fi | |
# iTerm2 integration and utilities (e.g., imgcat) | |
[[ -e "$HOME/.iterm2_shell_integration.zsh" ]] && source "$HOME/.iterm2_shell_integration.zsh" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
❯ brew list | |
==> Formulae | |
adns gmp libexif md4c qt@5 | |
ansible gnu-getopt libffi memcached rancher-cli | |
aom gnu-sed libgcrypt minikube rav1e | |
argocd gnupg libgeotiff minizip rbenv | |
aria2 gnutls libgpg-error mongodb-community readline | |
assimp go libgsf mongodb-database-tools redis | |
augeas gobject-introspection libheif mosquitto rethinkdb | |
autoconf grafana libidn mozjpeg rsync | |
bash graphite2 libidn2 mpdecimal rtmpdump | |
bdw-gc grep libimagequant mpfr rubberband | |
boost guile libksba mysql ruby-build | |
bpytop harfbuzz liblqr nats-server sass | |
brotli hashcat libmatio ncurses sdl2 | |
c-ares hcloud libmaxminddb netcdf sfcgal | |
ca-certificates hdf5 libmetalink nettle shared-mime-info | |
cabextract helm libmpc nghttp2 six | |
cairo highlight libnghttp2 nginx skaffold | |
cask htop libogg nmap snappy | |
cdrtools hugo libomp node socat | |
cfitsio hunspell libpng node@10 speedtest-cli | |
cgal hwloc libpq npth speex | |
checkov hyperkit libpthread-stubs nspr sqlite | |
chntpw icu4c librsvg nss srt | |
civo ilmbase librttopo numpy szip | |
cjson imagemagick libsamplerate oniguruma tcl-tk | |
cmake imath libslirp open-mpi terraform | |
coreutils ipython libsmi openblas terragrunt | |
curl isl libsndfile opencore-amr tesseract | |
datree jansson libsodium openexr theora | |
dav1d jasper libsoxr openjpeg tilt | |
dbus jbig2dec libspatialite openldap tldr | |
dialog jemalloc libspng openslide tree | |
dive jpeg libssh [email protected] ucl | |
docbook jpeg-xl libssh2 [email protected] unar | |
docbook-xsl jq libtasn1 opus unbound | |
double-conversion json-c libtiff orc unison | |
eigen jupyterlab libtool osx-cpu-temp unixodbc | |
elasticsearch-full k3d libunistring p11-kit upx | |
emacs k9s libusb pandoc vault | |
epsilon kibana-full libuv pango vde | |
espeak kind libvidstab pcre vips | |
expat kompose libvmaf pcre2 watch | |
fftw kpt libvorbis pinentry webp | |
flac krb5 libvpx pixman wget | |
fontconfig krew libwebsockets pkg-config wimlib | |
freetype kube-ps1 libx11 podman x264 | |
freexl kubectx libxau poppler x265 | |
frei0r kubefwd libxcb poppler-qt5 xctool | |
fribidi kubernetes-cli libxdmcp popt xerces-c | |
fzf kubernetes-helm libxext portaudio xmlto | |
garden-cli kubespy libxml2 postgis xorgproto | |
gcc kustomize libxrender postgresql xvid | |
gdal lame libyaml postgresql@11 xxhash | |
gdbm lazydocker libzip powerlevel9k xz | |
gdk-pixbuf leptonica linkerd proj@7 yarn | |
geos libassuan little-cms2 protobuf yh | |
gettext libb2 lua protobuf-c zeromq | |
ghostscript libbluray lz4 python-tabulate zimg | |
giflib libdap lzo [email protected] zsh | |
git libde265 m4 [email protected] zsh-syntax-highlighting | |
gitlab-runner libev mas qemu zstd | |
glib libevent mbedtls qt | |
==> Casks | |
adobe-acrobat-pro font-inconsolata-for-powerline native-access | |
aerial font-inconsolata-g-for-powerline ngrok | |
alfred font-oswald owncloud | |
arduino font-roboto-mono powerphotos | |
atom font-roboto-mono-for-powerline qlcolorcode | |
chrome-devtools font-source-code-pro qlmarkdown | |
chrome-remote-desktop-host font-source-sans-pro qlstephen | |
chromedriver font-source-serif-pro quicklook-csv | |
craftmanager franz quicklook-json | |
fantastical google-chrome quicknfo | |
firefox ilok-license-manager rubymine | |
font-awesome-terminal-fonts invisionsync sketch-toolbox | |
font-fontawesome jdownloader sound-control | |
font-hack kitematic teamviewer | |
font-hack-nerd-font miniconda wine-stable | |
font-inconsolata-dz-for-powerline mtmr xquartz | |
~ ───────────────────────────────────────────────────────────────────────────────────────────────────────────────── | |
❯ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment