brandon-fryslie / rad-shell

Ultra fast, feature filled Zsh installation

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

warnings on shell load

agradl opened this issue · comments

I'm getting these warnings whenever I open a new tab/window

/Users/pairing/.zgen/brandon-fryslie/rad-shell-master/docker/docker-zaw-container.zsh:58: command not found: zaw-register-src
/Users/pairing/.zgen/brandon-fryslie/rad-shell-master/docker/docker-zaw-image.zsh:50: command not found: zaw-register-src
/Users/pairing/.zgen/brandon-fryslie/rad-shell-master/docker/docker-zaw-dhost.zsh:33: command not found: zaw-register-src
zsh-syntax-highlighting: unhandled ZLE widget 'zaw-rad-docker-dhost'
zsh-syntax-highlighting: unhandled ZLE widget 'zaw-rad-docker-image'
zsh-syntax-highlighting: unhandled ZLE widget 'zaw-rad-docker-container'

My .zgen_setup.zsh is as follows

# Automatically regenerate zgen configuration when ~/.zgen-setup.zsh changes
ZGEN_RESET_ON_CHANGE=~/.zgen-setup.zsh

ulimit -n 8192

zstyle ':prezto:module:terminal' auto-title 'yes'
zstyle ':prezto:module:terminal:window-title' format '%n@%m'
zstyle ':prezto:module:terminal:tab-title' format '%s'

# Use bash-style word delimiters
autoload -U select-word-style
select-word-style bash

source "${HOME}/.zgen/zgen.zsh"
# if the init scipt doesn't exist
if ! zgen saved; then

  # Loads prezto base and default plugins:
  # environment terminal editor history directory spectrum utility completion prompt
  zgen prezto

  # Extra prezto plugins
  zgen prezto fasd
  zgen prezto git
  zgen prezto history-substring-search

  # Uncomment to enable Python support
  # zgen prezto python
  # zgen load robbyrussell/oh-my-zsh plugins/pip

  # Uncomment to enable Ruby support
  # zgen prezto ruby

  # Uncomment to enable Tmux support
  # zgen prezto tmux

  # Uncomment to enable Docker support
   zgen load robbyrussell/oh-my-zsh plugins/docker
   zgen load brandon-fryslie/rad-shell docker

  # Uncomment to enable NVM support
   zgen load brandon-fryslie/rad-shell nvm-lazy-load

  zgen load zsh-users/zaw
  zgen load zsh-users/zsh-autosuggestions
  zgen load zsh-users/zsh-completions

  # This needs to be before any other zaw sources, e.g., git and docker
  zgen load brandon-fryslie/rad-shell zaw

  zgen load brandon-fryslie/rad-shell git
  zgen load brandon-fryslie/rad-shell shell-tools
ENABLE_DOCKER_PROMPT=true
LAZY_NODE_PROMPT=true

zgen load RallySoftware/oh-my-zsh-custom plugins/set-script-path

zgen load /Users/pairing/projects/oh-my-zsh-custom/plugins/alm
zgen load RallySoftware/oh-my-zsh-custom plugins/java
zgen load RallySoftware/oh-my-zsh-custom plugins/appsdk
zgen load RallySoftware/oh-my-zsh-custom plugins/docker-alm
zgen load RallySoftware/oh-my-zsh-custom plugins/emacs
zgen load RallySoftware/oh-my-zsh-custom plugins/git
zgen load RallySoftware/oh-my-zsh-custom plugins/realtime

  # Load these plugins last
  zgen load brandon-fryslie/zsh-syntax-highlighting
  zgen load brandon-fryslie/rad-shell shell-customize

  # Theme
  zgen load brandon-fryslie/rad-shell git-taculous-theme/git-taculous

  zgen save
fi